blob: 7e77195a69c0da6bcd56bad6617213fb85986e8e (
plain)
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
|
#include <glib.h>
#include "libindicator/indicator-object.h"
void
test_loader_refunref (void)
{
return;
}
void
test_loader_creation_deletion_suite (void)
{
g_test_add_func ("/libindicator/loader/ref_and_unref", test_loader_refunref);
return;
}
int
main (int argc, char ** argv)
{
g_type_init ();
g_test_init (&argc, &argv, NULL);
test_loader_creation_deletion_suite();
return g_test_run();
}
|