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
|
/*
* Copyright (C) 2019 Alexander Mikhaylenko <exalm7659@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#include <handy.h>
static void
test_hdy_swipe_group_add_remove (void)
{
g_autoptr (HdySwipeGroup) group = NULL;
g_autoptr (HdySwipeable) swipeable1 = NULL;
g_autoptr (HdySwipeable) swipeable2 = NULL;
group = hdy_swipe_group_new ();
swipeable1 = HDY_SWIPEABLE (hdy_carousel_new ());
swipeable2 = HDY_SWIPEABLE (hdy_carousel_new ());
g_assert_cmpint (g_slist_length (hdy_swipe_group_get_swipeables (group)), ==, 0);
hdy_swipe_group_add_swipeable (group, swipeable1);
g_assert_cmpint (g_slist_length (hdy_swipe_group_get_swipeables (group)), ==, 1);
hdy_swipe_group_add_swipeable (group, swipeable2);
g_assert_cmpint (g_slist_length (hdy_swipe_group_get_swipeables (group)), ==, 2);
hdy_swipe_group_remove_swipeable (group, swipeable2);
g_assert_cmpint (g_slist_length (hdy_swipe_group_get_swipeables (group)), ==, 1);
hdy_swipe_group_remove_swipeable (group, swipeable1);
g_assert_cmpint (g_slist_length (hdy_swipe_group_get_swipeables (group)), ==, 0);
}
gint
main (gint argc,
gchar *argv[])
{
gtk_test_init (&argc, &argv, NULL);
hdy_init ();
g_test_add_func("/Handy/SwipeGroup/add_remove", test_hdy_swipe_group_add_remove);
return g_test_run();
}
|