mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-05-21 17:36:21 +08:00

git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@4 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
27 lines
460 B
C
27 lines
460 B
C
|
|
#include "ProductionCode2.h"
|
|
#include "unity.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_IgnoredTest(void)
|
|
{
|
|
TEST_IGNORE_MESSAGE("This Test Was Ignored On Purpose");
|
|
}
|
|
|
|
void test_AnotherIgnoredTest(void)
|
|
{
|
|
TEST_IGNORE_MESSAGE("These Can Be Useful For Leaving Yourself Notes On What You Need To Do Yet");
|
|
}
|
|
|
|
void test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void)
|
|
{
|
|
TEST_IGNORE(); //Like This
|
|
}
|