Updated test counts following addition of more test cases

This commit is contained in:
Phil Nash 2011-03-15 22:39:06 +00:00
parent f6758c2967
commit 5cab62bc82
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
"Number of 'succeeding' tests is fixed" )
{
runner.runMatching( "./succeeding/*" );
CHECK( runner.getSuccessCount() == 213 );
CHECK( runner.getSuccessCount() == 285 );
CHECK( runner.getFailureCount() == 0 );
}
@ -53,7 +53,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
{
runner.runMatching( "./failing/*" );
CHECK( runner.getSuccessCount() == 0 );
CHECK( runner.getFailureCount() == 55 );
CHECK( runner.getFailureCount() == 127 );
}
}
}