diff options
Diffstat (limited to 'tests/test-libcustomindicator.c')
-rw-r--r-- | tests/test-libcustomindicator.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test-libcustomindicator.c b/tests/test-libcustomindicator.c new file mode 100644 index 0000000..fab411d --- /dev/null +++ b/tests/test-libcustomindicator.c @@ -0,0 +1,14 @@ + +#include <glib.h> +#include <glib-object.h> + +gint +main (gint argc, gchar * argv[]) +{ + g_type_init(); + g_test_init(&argc, &argv, NULL); + + /* Test suites */ + + return g_test_run (); +} |