TestProductionCode2.c 567 B

12345678910111213141516171819202122232425262728293031
  1. #include "ProductionCode2.h"
  2. #include "unity.h"
  3. /* These should be ignored because they are commented out in various ways:
  4. #include "whatever.h"
  5. #include "somethingelse.h"
  6. */
  7. void setUp(void)
  8. {
  9. }
  10. void tearDown(void)
  11. {
  12. }
  13. void test_IgnoredTest(void)
  14. {
  15. TEST_IGNORE_MESSAGE("This Test Was Ignored On Purpose");
  16. }
  17. void test_AnotherIgnoredTest(void)
  18. {
  19. TEST_IGNORE_MESSAGE("These Can Be Useful For Leaving Yourself Notes On What You Need To Do Yet");
  20. }
  21. void test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void)
  22. {
  23. TEST_IGNORE(); /* Like This */
  24. }