TestProductionCode2_Runner.c 271 B

123456789
  1. #include "unity.h"
  2. #include "unity_fixture.h"
  3. TEST_GROUP_RUNNER(ProductionCode2)
  4. {
  5. RUN_TEST_CASE(ProductionCode2, IgnoredTest);
  6. RUN_TEST_CASE(ProductionCode2, AnotherIgnoredTest);
  7. RUN_TEST_CASE(ProductionCode2, ThisFunctionHasNotBeenTested_NeedsToBeImplemented);
  8. }