mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-25 22:19:25 +00:00
Added NotImplementedException
This commit is contained in:
parent
4c73aa5a0e
commit
abf271672f
7 changed files with 252 additions and 195 deletions
|
@ -81,8 +81,7 @@ namespace Catch {
|
|||
virtual void runAll( bool runHiddenTests = false ) {
|
||||
const std::vector<TestCaseInfo>& allTests = getCurrentContext().getTestCaseRegistry().getAllTests();
|
||||
for( std::size_t i=0; i < allTests.size(); ++i ) {
|
||||
if( runHiddenTests || !allTests[i].isHidden() )
|
||||
{
|
||||
if( runHiddenTests || !allTests[i].isHidden() ) {
|
||||
if( aborting() ) {
|
||||
m_reporter->Aborted();
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue