| 1234567891011121314151617 |
- #include <setjmp.h>
- #include <stdarg.h>
- #include <stddef.h>
- #include <google/cmockery.h>
- #include "test_list.h"
- #include "test_dlist.h"
- #include "test_bitree.h"
- int main() {
- const UnitTest tests[] = {
- unit_test(test_list_generally),
- unit_test(test_dlist_generally),
- unit_test(test_bitree_generally),
- };
-
- return run_tests(tests);
- }
|