1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*******************************************************************************
**3456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789
** 10 20 30 40 50 60 70 80
**
** notify-osd
**
** test-stack.c - unit-tests for stack class
**
** Copyright 2009 Canonical Ltd.
**
** Authors:
** Mirco "MacSlow" Mueller <mirco.mueller@canonical.com>
** David Barth <david.barth@canonical.com>
**
** This program is free software: you can redistribute it and/or modify it
** under the terms of the GNU General Public License version 3, as published
** by the Free Software Foundation.
**
** This program is distributed in the hope that it will be useful, but
** WITHOUT ANY WARRANTY; without even the implied warranties of
** MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
** PURPOSE. See the GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License along
** with this program. If not, see <http://www.gnu.org/licenses/>.
**
*******************************************************************************/
#include <glib.h>
#include "stack.h"
#include "defaults.h"
#include "bubble.h"
static
void
test_stack_new ()
{
Stack* stack = NULL;
Defaults* defaults = defaults_new ();
Observer* observer = observer_new ();
stack = stack_new (defaults, observer);
g_assert (stack != NULL);
}
static
void
test_stack_del ()
{
Stack* stack = NULL;
Defaults* defaults = defaults_new ();
Observer* observer = observer_new ();
stack = stack_new (defaults, observer);
stack_del (stack);
}
static
void
test_stack_push ()
{
Stack* stack = NULL;
Defaults* defaults = defaults_new ();
Observer* observer = observer_new ();
Bubble* bubble = bubble_new (defaults);
guint id = -1;
guint replaced_id = -1;
stack = stack_new (defaults, observer);
id = stack_push_bubble (stack, bubble);
g_assert (id > 0);
replaced_id = stack_push_bubble (stack, bubble);
g_assert (replaced_id == id);
g_object_unref (G_OBJECT (stack));
}
GTestSuite *
test_stack_create_test_suite (void)
{
GTestSuite *ts = NULL;
ts = g_test_create_suite ("stack");
#define TC(x) g_test_create_case(#x, 0, NULL, NULL, x, NULL)
g_test_suite_add(ts, TC(test_stack_new));
g_test_suite_add(ts, TC(test_stack_del));
g_test_suite_add(ts, TC(test_stack_push));
return ts;
}
|