1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

Merge pull request #242 from jsalling/feature/fixture-test-name

Fixture - Remove duplicate output of test name in verbose mode
This commit is contained in:
Mark VanderVoord
2017-01-13 16:38:10 -05:00
committed by GitHub
4 changed files with 5 additions and 12 deletions

View File

@@ -81,7 +81,12 @@ void UnityTestRunner(unityfunction* setup,
if (!UnityFixture.Verbose)
UNITY_OUTPUT_CHAR('.');
else
{
UnityPrint(printableName);
#ifndef UNITY_REPEAT_TEST_NAME
Unity.CurrentTestName = NULL;
#endif
}
Unity.NumberOfTests++;
UnityMalloc_StartTest();