test.c 387 B

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