aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-helper.c
blob: 37fad86eb15dc159d46b8dfcf2a0fc439cadbf53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdlib.h>
#include <glib.h>
#include <glib-object.h>

#include "test-helper.h"

void
test_init (int argc,
    char **argv)
{
  g_test_init (&argc, &argv, NULL);
  g_type_init ();
}

void
test_deinit (void)
{
  ;
}