Skip to content

Commit 48d7210

Browse files
author
Alex Overchenko
committed
Fixing CI tests passing
1 parent e4085eb commit 48d7210

3 files changed

Lines changed: 0 additions & 11 deletions

File tree

test/testdata/testRunnerGenerator.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
suitetest- custom prefix for when we want to use custom suite setup/teardown
2020
*/
2121

22-
/* Support for Meta Test Rig */
23-
#define TEST_CASE(a)
24-
2522
/* Include Passthroughs for Linking Tests */
2623
void putcharSpy(int c) { (void)putchar(c);}
2724
void flushSpy(void) {}

test/testdata/testRunnerGeneratorSmall.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ TEST_FILE("some_file.c")
1111
spec - normal default prefix. required to run default setup/teardown calls.
1212
*/
1313

14-
/* Support for Meta Test Rig */
15-
#define TEST_CASE(a)
16-
1714
/* Include Passthroughs for Linking Tests */
1815
void putcharSpy(int c) { (void)putchar(c);}
1916
void flushSpy(void) {}
@@ -67,4 +64,3 @@ void spec_ThisTestPassesWhenNormalTeardownRan(void)
6764
{
6865
TEST_ASSERT_EQUAL_MESSAGE(1, CounterTeardown, "Normal Teardown Wasn't Run");
6966
}
70-

test/testdata/testRunnerGeneratorWithMocks.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
suitetest- custom prefix for when we want to use custom suite setup/teardown
2121
*/
2222

23-
/* Support for Meta Test Rig */
24-
#define TEST_CASE(a)
25-
2623
/* Include Passthroughs for Linking Tests */
2724
void putcharSpy(int c) { (void)putchar(c);}
2825
void flushSpy(void) {}
@@ -194,4 +191,3 @@ void test_ShouldCallMockInitAndVerifyFunctionsForEachTest(void)
194191
TEST_ASSERT_EQUAL_MESSAGE(Unity.NumberOfTests - 1, mockMock_Destroy_Counter, "Mock Destroy Should Be Called Once Per Test Completed");
195192
TEST_ASSERT_EQUAL_MESSAGE(0, CMockMemFreeFinalCounter, "Mock MemFreeFinal Should Not Be Called Until End");
196193
}
197-

0 commit comments

Comments
 (0)