gplate/tests/test-collection-interface.c
author Gary Kramlich <grim@reaperworld.com>
Sat Jun 26 15:25:18 2010 -0500 (23 months ago)
changeset 388 301bcc8bdad0
child 394 ad26d98e20e6
permissions -rw-r--r--
moving more testing stuff to it's new home and implementation
     1 #include <gplate/gplate.h>
     2 
     3 #include <glib.h>
     4 
     5 /******************************************************************************
     6  * Main
     7  *****************************************************************************/
     8 gint
     9 main(gint argc, gchar **argv) {
    10 	g_test_init(&argc, &argv, NULL);
    11 
    12 	g_type_init();
    13 
    14 	gplate_config_load_default();
    15 
    16 	return g_test_run();
    17 }
    18