diff --git a/extras/fixture/src/unity_fixture.h b/extras/fixture/src/unity_fixture.h index cbbdbae42ca3b0cb7ff4f04552af641e713fbe4c..57c88688836daad06e5eb686f4515cb0329ceda3 100644 --- a/extras/fixture/src/unity_fixture.h +++ b/extras/fixture/src/unity_fixture.h @@ -55,13 +55,8 @@ int UnityMain(int argc, const char* argv[], void (*runAllTests)(void)); //This goes at the bottom of each test file or in a separate c file #define TEST_GROUP_RUNNER(group)\ - void TEST_##group##_GROUP_RUNNER_runAll(void);\ void TEST_##group##_GROUP_RUNNER(void);\ - void TEST_##group##_GROUP_RUNNER(void)\ - {\ - TEST_##group##_GROUP_RUNNER_runAll();\ - }\ - void TEST_##group##_GROUP_RUNNER_runAll(void) + void TEST_##group##_GROUP_RUNNER(void) //Call this from main #define RUN_TEST_GROUP(group)\