summaryrefslogtreecommitdiff
path: root/test/test-init.c
blob: 1fd856e882ee2aefd1a480ca75509de8295af6b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Copyright 2013 Endless Mobile, Inc. */

#include <glib.h>
#include <endless/endless.h>
#include "endless/init-private.h"

#include "run-tests.h"

static void
test_constructor_called (void)
{
  g_assert (eos_is_inited ());
}

void
add_init_tests (void)
{
  g_test_add_func ("/init/constructor-called", test_constructor_called);
}