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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#include <libebook/libebook.h>
#include "ebook-test-utils.h"
#include "e-test-server-utils.h"
static ETestServerClosure book_closure =
{ E_TEST_SERVER_DEPRECATED_ADDRESS_BOOK, NULL, 0 };
static void
test_remove_contact_by_id_async (ETestServerFixture *fixture,
gconstpointer user_data)
{
EBook *book;
gchar *uid;
book = E_TEST_SERVER_UTILS_SERVICE (fixture, EBook);
uid = ebook_test_utils_book_add_contact_from_test_case_verify (book, "simple-1", NULL);
ebook_test_utils_book_async_remove_contact_by_id (
book, uid, ebook_test_utils_callback_quit, fixture->loop);
g_main_loop_run (fixture->loop);
g_free (uid);
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("http://bugzilla.gnome.org/");
g_test_add (
"/EBook/RemoveContactById/Async",
ETestServerFixture,
&book_closure,
e_test_server_utils_setup,
test_remove_contact_by_id_async,
e_test_server_utils_teardown);
return e_test_server_utils_run ();
}
|