aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/tests/evas_test_init.c
blob: f4271ecbc3eb4f1409f7f837e6ba64830fdcf34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <stdio.h>

#include "evas_suite.h"
#include "Evas.h"

START_TEST(evas_simple)
{
   fail_if(evas_init() != 1); /* one init by test suite */
   fail_if(evas_shutdown() != 0);
}
END_TEST

void evas_test_init(TCase *tc)
{
   tcase_add_test(tc, evas_simple);
}