Advertisement
andrewtc4

tcunit test file

May 21st, 2024 (edited)
828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include <tcunit/tcunit.h>
  2. #include <stdlib.h>
  3.  
  4. tc_result test_foo()
  5. {
  6.     return TC_OK;
  7. }
  8.  
  9. void all_tests()
  10. {
  11.     Test("foo", test_foo, NULL, NULL);
  12. }
  13.  
  14. TC_RUN_TESTS(all_tests);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement