1
0
forked from Alepha/Alepha

Individual TableTest cases can be disabled.

This commit is contained in:
2023-11-13 11:45:56 -05:00
parent 4682fe3ffb
commit c6b66aa7b5
5 changed files with 92 additions and 17 deletions

View File

@ -46,7 +46,7 @@ namespace Alepha::Hydrogen::Testing::detail::testing
if( explicitlyNamed( name ) or not disabled and selected( name ) )
{
std::cout << C::testInfo << "BEGIN" << resetStyle << " : " << name << std::endl;
std::cout << C::testStat << "BEGIN" << resetStyle << " : " << name << std::endl;
try
{
test();
@ -66,7 +66,7 @@ namespace Alepha::Hydrogen::Testing::detail::testing
std::cout << std::endl;
}
std::cout << C::testInfo << "FINISHED" << resetStyle << ": " << name << std::endl;
std::cout << C::testStat << "FINISHED" << resetStyle << ": " << name << std::endl;
}
}