1
0
forked from Alepha/Alepha

I have the universal handler working for value-test cases...

This commit is contained in:
2023-10-28 10:57:41 -04:00
parent 3a3e709236
commit 48549ff465
3 changed files with 404 additions and 49 deletions

View File

@ -61,6 +61,7 @@ namespace Alepha::Hydrogen::Testing::detail::testing
throw;
}
catch( const TestFailure &fail ) { std::cout << " -- " << fail.failureCount << " failures."; }
catch( const std::exception &ex ) { std::cout << " -- unknown failure count (mesg: " << ex.what() << ")"; }
catch( ... ) { std::cout << " -- unknown failure count"; }
std::cout << std::endl;
}