aa81384c8166e1a6e8b56a74eaa1d075ff2f121f
[libcontrac.git] / tests / test_contrac.c
1 /** \ingroup contrac
2 * @file
3 * @author David Llewellyn-Jones
4 * @version $(VERSION)
5 *
6 * @section LICENSE
7 *
8 *
9 *
10 * @brief
11 * @section DESCRIPTION
12 *
13 *
14 *
15 */
16
17 // Includes
18
19 #include <check.h>
20
21 #include "contrac/contrac.h"
22
23 // Defines
24
25 // Structures
26
27 // Function prototypes
28
29 // Function definitions
30
31 START_TEST (check_contrac) {
32
33 }
34 END_TEST
35
36 int main(void) {
37 int failed;
38 Suite * s;
39 SRunner *sr;
40 TCase * tc;
41
42 s = suite_create("libcontrac");
43
44 tc = tcase_create("Contrac");
45 tcase_add_test(tc, check_contrac);
46 suite_add_tcase(s, tc);
47 sr = srunner_create(s);
48
49 srunner_run_all(sr, CK_NORMAL);
50 failed = srunner_ntests_failed(sr);
51 srunner_free(sr);
52
53 return (failed == 0) ? 0 : -1;
54 }
55