svn update: 48958 (latest:48959)
[framework/uifw/ecore.git] / src / tests / ecore_test_ecore_con.c
1 #ifdef HAVE_CONFIG_H
2 # include <config.h>
3 #endif
4
5 #include <Ecore_Con.h>
6
7 #include "ecore_suite.h"
8
9
10 START_TEST(ecore_test_ecore_con_init)
11 {
12    int ret;
13
14    ret = ecore_con_init();
15    fail_if(ret != 1);
16
17    ret = ecore_con_shutdown();
18    fail_if(ret != 0);
19 }
20 END_TEST
21
22 void ecore_test_ecore_con(TCase *tc)
23 {
24    tcase_add_test(tc, ecore_test_ecore_con_init);
25 }