From 4a00e8feed10f39eef4a9c5226a28552bf1c21ed Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Sun, 14 Jul 2013 09:23:47 -0700 Subject: [PATCH] Adjust UnitTest output --- modules/beast_core/diagnostic/beast_UnitTest.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/beast_core/diagnostic/beast_UnitTest.cpp b/modules/beast_core/diagnostic/beast_UnitTest.cpp index 49b96ce72..9bbaa5051 100644 --- a/modules/beast_core/diagnostic/beast_UnitTest.cpp +++ b/modules/beast_core/diagnostic/beast_UnitTest.cpp @@ -155,8 +155,7 @@ void UnitTestRunner::beginNewTest (UnitTest* const test, const String& subCatego r->passes = 0; r->failures = 0; - logMessage ("-----------------------------------------------------------------"); - logMessage ("Starting test: " + r->unitTestName + " / " + subCategory + "..."); + logMessage ("Test: " + r->unitTestName + "/" + subCategory + "..."); resultsUpdated(); } @@ -179,7 +178,7 @@ void UnitTestRunner::endTest() } else { - logMessage ("All tests completed successfully"); + //logMessage ("All tests completed successfully"); } } }