mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 19:53:48 +00:00
test report
-check to see if emojis are messing with triggering the test reporters -remove success spam from unit test output
This commit is contained in:
parent
a83be9f6dd
commit
434c7f7ea2
5 changed files with 8 additions and 5 deletions
|
|
@ -72,6 +72,9 @@ class TorqueUnitTestListener : public ::testing::EmptyTestEventListener
|
|||
Con::printf("TestClass:%s Test:%s Failed!",
|
||||
testInfo.test_case_name(), testInfo.name());
|
||||
}
|
||||
if (!mVerbose)
|
||||
return;
|
||||
|
||||
else if(testInfo.result()->Passed())
|
||||
{
|
||||
Con::printf("TestClass:%s Test:%s Succeeded!",
|
||||
|
|
@ -269,7 +272,7 @@ DefineEngineFunction(runAllUnitTests, int, (const char* testSpecs, const char* r
|
|||
delete listeners.Release(listeners.default_result_printer());
|
||||
|
||||
// Add the Torque unit test listener.
|
||||
listeners.Append(new TorqueUnitTestListener(true));
|
||||
listeners.Append(new TorqueUnitTestListener(false));
|
||||
|
||||
// Perform googletest run.
|
||||
Con::printf("\nUnit Tests Starting...\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue