From 5cab62bc82f9f9f2197891c970a8b0f4b8bb57a4 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 15 Mar 2011 22:39:06 +0000 Subject: [PATCH] Updated test counts following addition of more test cases --- Test/TestMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/TestMain.cpp b/Test/TestMain.cpp index ebabb8d9..21bce21b 100644 --- a/Test/TestMain.cpp +++ b/Test/TestMain.cpp @@ -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 ); } } }