diff --git a/examples/example_1/test/test_runners/TestProductionCode2_Runner.c b/examples/example_1/test/test_runners/TestProductionCode2_Runner.c index 52aaa02d05399254c796ba80825442f7256ebc2a..01926b1e72becfb0ef85ea2a7796fdc68aa21d52 100644 --- a/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +++ b/examples/example_1/test/test_runners/TestProductionCode2_Runner.c @@ -24,7 +24,8 @@ static void runTest(UnityTestFunction test) tearDown(); } } -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/examples/example_1/test/test_runners/TestProductionCode_Runner.c b/examples/example_1/test/test_runners/TestProductionCode_Runner.c index 4375d87d77af568183322eac99f95438fb41f7bc..844c7935e418036729b8c3f6ff0eb80f4564ada9 100644 --- a/examples/example_1/test/test_runners/TestProductionCode_Runner.c +++ b/examples/example_1/test/test_runners/TestProductionCode_Runner.c @@ -26,7 +26,8 @@ static void runTest(UnityTestFunction test) tearDown(); } } -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/examples/example_3/test/no_ruby/TestProductionCode2_Runner.c b/examples/example_3/test/no_ruby/TestProductionCode2_Runner.c index 52aaa02d05399254c796ba80825442f7256ebc2a..01926b1e72becfb0ef85ea2a7796fdc68aa21d52 100644 --- a/examples/example_3/test/no_ruby/TestProductionCode2_Runner.c +++ b/examples/example_3/test/no_ruby/TestProductionCode2_Runner.c @@ -24,7 +24,8 @@ static void runTest(UnityTestFunction test) tearDown(); } } -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/examples/example_3/test/no_ruby/TestProductionCode_Runner.c b/examples/example_3/test/no_ruby/TestProductionCode_Runner.c index 4375d87d77af568183322eac99f95438fb41f7bc..844c7935e418036729b8c3f6ff0eb80f4564ada9 100644 --- a/examples/example_3/test/no_ruby/TestProductionCode_Runner.c +++ b/examples/example_3/test/no_ruby/TestProductionCode_Runner.c @@ -26,7 +26,8 @@ static void runTest(UnityTestFunction test) tearDown(); } } -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_cmd.c b/test/expectdata/testsample_cmd.c index 989034487fc879fb66fb0effa197bdf1a2f10cfc..3bd5c0891246fb148fe8f273a50b1cad1c72f36d 100644 --- a/test/expectdata/testsample_cmd.c +++ b/test/expectdata/testsample_cmd.c @@ -38,7 +38,8 @@ extern void test_TheSecondThingToTest(void); //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_def.c b/test/expectdata/testsample_def.c index f89b2568f2d8674f168ec423daf5b2003d6c683b..0c95c7626c76d5ed787151546e102c2535999678 100644 --- a/test/expectdata/testsample_def.c +++ b/test/expectdata/testsample_def.c @@ -34,7 +34,8 @@ extern void test_TheSecondThingToTest(void); //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_mock_cmd.c b/test/expectdata/testsample_mock_cmd.c index ed9fe99e1ca5a116e4f2a2b9a03f42237025aabd..d047b2af5c067ccbc7cfbe1c9626bb6d1ccaa8dc 100644 --- a/test/expectdata/testsample_mock_cmd.c +++ b/test/expectdata/testsample_mock_cmd.c @@ -56,7 +56,8 @@ static void CMock_Destroy(void) } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_def.c b/test/expectdata/testsample_mock_def.c index be933b75bac88ae12d28b2d1da59e5a0164cd46b..3a90549040e8e6b08564ef3c5d918ed3908dab2f 100644 --- a/test/expectdata/testsample_mock_def.c +++ b/test/expectdata/testsample_mock_def.c @@ -52,7 +52,8 @@ static void CMock_Destroy(void) } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_new1.c b/test/expectdata/testsample_mock_new1.c index f6a8743b52c22d0bae1f01bb1cb86c121940fba8..7f49c2e245f87a897c983e31945ece86acbcd01c 100644 --- a/test/expectdata/testsample_mock_new1.c +++ b/test/expectdata/testsample_mock_new1.c @@ -65,7 +65,8 @@ static void CMock_Destroy(void) } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_new2.c b/test/expectdata/testsample_mock_new2.c index df816f7482edf13da46bb4b6aea3c9b5b7add0bc..daeb82e4865ea04e841295c8e98c538c45a36bad 100644 --- a/test/expectdata/testsample_mock_new2.c +++ b/test/expectdata/testsample_mock_new2.c @@ -64,7 +64,8 @@ a_custom_teardown(); } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_param.c b/test/expectdata/testsample_mock_param.c index 449779911d189f6d29edfd43452f3ad36eadc27a..0f6b05ad5a3af4101ee584e1231ea3084ee3d43f 100644 --- a/test/expectdata/testsample_mock_param.c +++ b/test/expectdata/testsample_mock_param.c @@ -53,7 +53,8 @@ static void CMock_Destroy(void) } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_run1.c b/test/expectdata/testsample_mock_run1.c index f6a8743b52c22d0bae1f01bb1cb86c121940fba8..7f49c2e245f87a897c983e31945ece86acbcd01c 100644 --- a/test/expectdata/testsample_mock_run1.c +++ b/test/expectdata/testsample_mock_run1.c @@ -65,7 +65,8 @@ static void CMock_Destroy(void) } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_run2.c b/test/expectdata/testsample_mock_run2.c index df816f7482edf13da46bb4b6aea3c9b5b7add0bc..daeb82e4865ea04e841295c8e98c538c45a36bad 100644 --- a/test/expectdata/testsample_mock_run2.c +++ b/test/expectdata/testsample_mock_run2.c @@ -64,7 +64,8 @@ a_custom_teardown(); } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_mock_yaml.c b/test/expectdata/testsample_mock_yaml.c index e02b3c2530958f7878bd9769905837382336f6fb..35377d7bd99bcfa8a521fc3e5a9583b8134c1dd9 100644 --- a/test/expectdata/testsample_mock_yaml.c +++ b/test/expectdata/testsample_mock_yaml.c @@ -65,7 +65,8 @@ a_yaml_setup(); } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { CMock_Verify(); CMock_Destroy(); diff --git a/test/expectdata/testsample_new1.c b/test/expectdata/testsample_new1.c index 73bc4990279a386f82b788fab127f2bb6acd9dbc..1bba7ea6e89effa77d7bd5430a36db9bc66df05e 100644 --- a/test/expectdata/testsample_new1.c +++ b/test/expectdata/testsample_new1.c @@ -44,7 +44,8 @@ extern void test_TheSecondThingToTest(void); //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_new2.c b/test/expectdata/testsample_new2.c index 5d66771e549938fff4f84338c1b6fd063872ed78..4ce663918068da0a0966005def99ef88a67fdd63 100644 --- a/test/expectdata/testsample_new2.c +++ b/test/expectdata/testsample_new2.c @@ -46,7 +46,8 @@ a_custom_teardown(); } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_param.c b/test/expectdata/testsample_param.c index 820ded239e58a4525ff307f0d7faeca68231462f..950eeb3718181914f8137314140ab4ba4a672917 100644 --- a/test/expectdata/testsample_param.c +++ b/test/expectdata/testsample_param.c @@ -35,7 +35,8 @@ extern void test_TheSecondThingToTest(void); //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_run1.c b/test/expectdata/testsample_run1.c index 73bc4990279a386f82b788fab127f2bb6acd9dbc..1bba7ea6e89effa77d7bd5430a36db9bc66df05e 100644 --- a/test/expectdata/testsample_run1.c +++ b/test/expectdata/testsample_run1.c @@ -44,7 +44,8 @@ extern void test_TheSecondThingToTest(void); //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_run2.c b/test/expectdata/testsample_run2.c index 5d66771e549938fff4f84338c1b6fd063872ed78..4ce663918068da0a0966005def99ef88a67fdd63 100644 --- a/test/expectdata/testsample_run2.c +++ b/test/expectdata/testsample_run2.c @@ -46,7 +46,8 @@ a_custom_teardown(); } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp(); diff --git a/test/expectdata/testsample_yaml.c b/test/expectdata/testsample_yaml.c index 0b38ad27d2d6aa89eb034995bb0b413afab09ab1..96ba511d5de8b121263a1c036b1402e0c411190b 100644 --- a/test/expectdata/testsample_yaml.c +++ b/test/expectdata/testsample_yaml.c @@ -47,7 +47,8 @@ a_yaml_setup(); } //=======Test Reset Option===== -void resetTest() +void resetTest(void); +void resetTest(void) { tearDown(); setUp();