From 02c877f91644e498ce0c9c257823e63a1154c652 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Fri, 22 Apr 2011 19:30:55 +0100 Subject: [PATCH] Updated self test with current test counts --- Test/TestMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/TestMain.cpp b/Test/TestMain.cpp index 1771757c..e8a25452 100644 --- a/Test/TestMain.cpp +++ b/Test/TestMain.cpp @@ -50,7 +50,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() == 224 ); + CHECK( runner.getSuccessCount() == 223 ); CHECK( runner.getFailureCount() == 0 ); } @@ -59,7 +59,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() == 60 ); } } }