135375f98Sopenharmony_ci
235375f98Sopenharmony_ci#include "ProductionCode2.h"
335375f98Sopenharmony_ci#include "unity.h"
435375f98Sopenharmony_ci
535375f98Sopenharmony_ci/* These should be ignored because they are commented out in various ways:
635375f98Sopenharmony_ci#include "whatever.h"
735375f98Sopenharmony_ci#include "somethingelse.h"
835375f98Sopenharmony_ci*/
935375f98Sopenharmony_ci
1035375f98Sopenharmony_civoid setUp(void)
1135375f98Sopenharmony_ci{
1235375f98Sopenharmony_ci}
1335375f98Sopenharmony_ci
1435375f98Sopenharmony_civoid tearDown(void)
1535375f98Sopenharmony_ci{
1635375f98Sopenharmony_ci}
1735375f98Sopenharmony_ci
1835375f98Sopenharmony_civoid test_IgnoredTest(void);
1935375f98Sopenharmony_civoid test_AnotherIgnoredTest(void);
2035375f98Sopenharmony_civoid test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void);
2135375f98Sopenharmony_ci
2235375f98Sopenharmony_civoid test_IgnoredTest(void)
2335375f98Sopenharmony_ci{
2435375f98Sopenharmony_ci    TEST_IGNORE_MESSAGE("This Test Was Ignored On Purpose");
2535375f98Sopenharmony_ci}
2635375f98Sopenharmony_ci
2735375f98Sopenharmony_civoid test_AnotherIgnoredTest(void)
2835375f98Sopenharmony_ci{
2935375f98Sopenharmony_ci    TEST_IGNORE_MESSAGE("These Can Be Useful For Leaving Yourself Notes On What You Need To Do Yet");
3035375f98Sopenharmony_ci}
3135375f98Sopenharmony_ci
3235375f98Sopenharmony_civoid test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void)
3335375f98Sopenharmony_ci{
3435375f98Sopenharmony_ci    TEST_IGNORE(); /* Like This */
3535375f98Sopenharmony_ci}
36