all_tests.c 221 B

123456789101112
  1. #include "unity_fixture.h"
  2. static void RunAllTests(void)
  3. {
  4. RUN_TEST_GROUP(ProductionCode);
  5. RUN_TEST_GROUP(ProductionCode2);
  6. }
  7. int main(int argc, const char * argv[])
  8. {
  9. return UnityMain(argc, argv, RunAllTests);
  10. }