1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-25 01:11:36 +01:00

- added ability to parse fun characters like parenthesis in TEST_CASES

- fixed TEST_CASE error

git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@115 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
mvandervoord
2011-01-22 18:53:23 +00:00
parent aca9892418
commit 3e472491c9
2 changed files with 8 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ void tearDown(void)
TEST_CASE(0)
TEST_CASE(44)
TEST_CASE(99)
TEST_CASE((90)+9)
void test_TheseShouldAllPass(int Num)
{
TEST_ASSERT_TRUE(Num < 100);
@@ -60,7 +60,7 @@ void test_TheseShouldAllPass(int Num)
TEST_CASE(3)
TEST_CASE(77)
TEST_CASE(99)
TEST_CASE( (99) + 1 - (1))
void test_TheseShouldAllFail(int Num)
{
EXPECT_ABORT_BEGIN