]> git.llucax.com Git - software/mutest.git/blob - sample/init_fail_test.c
Implement test suite initialization and termination
[software/mutest.git] / sample / init_fail_test.c
1
2 /* dummy test to illustrate how a test suite initialization could fail */
3
4 #ifdef MUTEST_PY
5 #include "../py/mutest.h"
6 #else
7 #include "../mutest.h"
8 #endif
9
10 static int ret = 0;
11
12 int mu_init_success() {
13         return ret++;
14 }
15
16 int mu_init_fail() {
17         return ret;
18 }
19
20 /* this test will never be executed because the initialization failed */
21 void mu_test_dummy() {
22 }
23
24 /* this test will never be executed either */
25 void mu_term_success() {
26 }
27