gplate/tests/test-collection-interface.c
author Gary Kramlich <grim@reaperworld.com>
Sat Jul 03 23:24:33 2010 -0500 (22 months ago)
changeset 394 ad26d98e20e6
parent 388 301bcc8bdad0
permissions -rw-r--r--
Changed the license from gplv2 to gplv3
Updated copyrights to be 2007-2010 rather than 2007-2008 (since just about everything has been touched recently
Ignored the top level tests/ directory for now since that is slowly being replaced
grim@394
     1
/*
grim@394
     2
 * Copyright (C) 2007-2010 Gary Kramlich <grim@reaperworld.com>
grim@394
     3
 *
grim@394
     4
 * This program is free software: you can redistribute it and/or modify
grim@394
     5
 * it under the terms of the GNU General Public License as published by
grim@394
     6
 * the Free Software Foundation, either version 3 of the License, or
grim@394
     7
 * (at your option) any later version.
grim@394
     8
 *
grim@394
     9
 * This program is distributed in the hope that it will be useful,
grim@394
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
grim@394
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
grim@394
    12
 * GNU General Public License for more details.
grim@394
    13
 *
grim@394
    14
 * You should have received a copy of the GNU General Public License
grim@394
    15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
grim@394
    16
 */
grim@388
    17
#include <gplate/gplate.h>
grim@388
    18
grim@388
    19
#include <glib.h>
grim@388
    20
grim@388
    21
/******************************************************************************
grim@388
    22
 * Main
grim@388
    23
 *****************************************************************************/
grim@388
    24
gint
grim@388
    25
main(gint argc, gchar **argv) {
grim@388
    26
	g_test_init(&argc, &argv, NULL);
grim@388
    27
grim@388
    28
	g_type_init();
grim@388
    29
grim@388
    30
	gplate_config_load_default();
grim@388
    31
grim@388
    32
	return g_test_run();
grim@388
    33
}
grim@388
    34