2 * This file is part of mutest, a simple micro unit testing framework for C.
4 * mutest was written by Leandro Lucarella <llucax@gmail.com> and is released
5 * under the BOLA license, please see the LICENSE file or visit:
6 * http://blitiri.com.ar/p/bola/
8 * This is a dummy test suite that illustrates how a test suite initialization
9 * can fail. Each (public) function starting with mu_init will be picked up
10 * by mkmutest as an initialization function and executed unless one fails
11 * (returns != 0). Functions starting with mu_test will be used as test cases,
12 * but since an initialization function fails, none will be executed.
14 * Please, read the README file for more details.
17 #include "../mutest.h"
21 int mu_init_success() {
29 /* this test will never be executed because the initialization failed */
30 void mu_test_dummy() {
33 /* this test will never be executed either */
34 void mu_term_success() {