mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-09-26 15:53:37 +08:00

- ignore comments in test parser - fixed a couple bugs in 16-bit support - fixed minor compiler errors for less lenient compilers - fixed error in docs. - renamed link to link_it in rakefiles to avoid collision in new versions of rake git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@136 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
32 lines
596 B
C
32 lines
596 B
C
|
|
#include "ProductionCode2.h"
|
|
#include "unity.h"
|
|
|
|
/* These should be ignored because they are commented out in various ways:
|
|
#include "whatever.h"
|
|
*/
|
|
//#include "somethingelse.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
|
|
}
|