mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
parent
0edebf41b0
commit
85c8074784
@ -37,7 +37,7 @@ namespace Catch {
|
|||||||
|
|
||||||
Totals totals;
|
Totals totals;
|
||||||
|
|
||||||
context.testGroupStarting( "all tests", 1, 1 ); // deprecated?
|
context.testGroupStarting( context.config()->name(), 1, 1 );
|
||||||
|
|
||||||
TestSpec testSpec = m_config->testSpec();
|
TestSpec testSpec = m_config->testSpec();
|
||||||
if( !testSpec.hasFilters() )
|
if( !testSpec.hasFilters() )
|
||||||
@ -68,7 +68,7 @@ namespace Catch {
|
|||||||
++it )
|
++it )
|
||||||
m_reporter->skipTest( *it );
|
m_reporter->skipTest( *it );
|
||||||
|
|
||||||
context.testGroupEnded( "all tests", totals, 1, 1 );
|
context.testGroupEnded( context.config()->name(), totals, 1, 1 );
|
||||||
return totals;
|
return totals;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="all tests" errors="12" failures="88" tests="804" hostname="tbd" time="{duration}" timestamp="tbd">
|
<testsuite name="CatchSelfTest" errors="12" failures="88" tests="804" hostname="tbd" time="{duration}" timestamp="tbd">
|
||||||
<testcase classname="global" name="toString(enum)" time="{duration}"/>
|
<testcase classname="global" name="toString(enum)" time="{duration}"/>
|
||||||
<testcase classname="global" name="toString(enum w/operator<<)" time="{duration}"/>
|
<testcase classname="global" name="toString(enum w/operator<<)" time="{duration}"/>
|
||||||
<testcase classname="global" name="toString(enum class)" time="{duration}"/>
|
<testcase classname="global" name="toString(enum class)" time="{duration}"/>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<Catch name="CatchSelfTest">
|
<Catch name="CatchSelfTest">
|
||||||
<Group name="all tests">
|
<Group name="CatchSelfTest">
|
||||||
<TestCase name="toString(enum)">
|
<TestCase name="toString(enum)">
|
||||||
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
|
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
|
Loading…
Reference in New Issue
Block a user