mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Always output final summary - even if no errors
This commit is contained in:
parent
3eb41eed6d
commit
f4548505e2
@ -92,12 +92,10 @@ namespace Catch
|
||||
std::size_t failed
|
||||
)
|
||||
{
|
||||
if( m_testingSpan.emitted )
|
||||
{
|
||||
m_config.stream() << "[Testing completed. ";
|
||||
ReportCounts( succeeded, failed );
|
||||
m_config.stream() << "]" << std::endl;
|
||||
}
|
||||
// Output the overall test results even if "Started Testing" was not emitted
|
||||
m_config.stream() << "[Testing completed. ";
|
||||
ReportCounts( succeeded, failed );
|
||||
m_config.stream() << "]" << std::endl;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user