test.c 357 B

1234567891011121314151617
  1. #include <setjmp.h>
  2. #include <stdarg.h>
  3. #include <stddef.h>
  4. #include <google/cmockery.h>
  5. #include "test_list.h"
  6. #include "test_dlist.h"
  7. #include "test_bitree.h"
  8. int main() {
  9. const UnitTest tests[] = {
  10. unit_test(test_list_generally),
  11. unit_test(test_dlist_generally),
  12. unit_test(test_bitree_generally),
  13. };
  14. return run_tests(tests);
  15. }