]> git.0d.be Git - empathy.git/blob - tests/test-helper.c
move test_init/test_deinit to test-helper.c
[empathy.git] / tests / test-helper.c
1 #include <stdlib.h>
2 #include <glib.h>
3 #include <glib-object.h>
4
5 #include "test-helper.h"
6
7 void
8 test_init (int argc,
9     char **argv)
10 {
11   g_test_init (&argc, &argv, NULL);
12   g_type_init ();
13 }
14
15 void
16 test_deinit (void)
17 {
18   ;
19 }