/* * main.cpp * Catch - Test * * Created by Phil on 22/10/2010. * Copyright 2010 Two Blue Cubes Ltd * * Distributed under the Boost Software License, Version 1.0. (See accompanying * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) * */ #include "../catch.hpp" #include "../catch_runner.hpp" // This code runs the meta tests and verifies that the failing ones failed and the successful ones succeeded int main (int argc, char * const argv[]) { using namespace Catch; bool showAllResults = false; if( argc > 1 && ( std::string( argv[1] ) == "-s" || std::string( argv[1] ) == "--success" ) ) showAllResults = true; ReporterConfig reporterConfig( ReporterConfig::Include::SuccessfulResults ); BasicReporter reporter (reporterConfig ); Runner runner; runner.setReporter( &reporter ); std::ostringstream ossSucceeding; reporterConfig.setStreamBuf( ossSucceeding.rdbuf() ); runner.runMatching( "succeeding/*" ); std::string succeedingResults = ossSucceeding.str(); std::ostringstream ossFailing; reporterConfig.setStreamBuf( ossFailing.rdbuf() ); runner.runMatching( "failing/*" ); std::string failingResults = ossFailing.str(); int result = 0; if( succeedingResults.find( "failed" ) != std::string::npos ) { std::cerr << "Some tests that should have succeeded failed:\n\n" << succeedingResults; result = 1; } else if( showAllResults ) { std::cout << succeedingResults << "\n\n"; } if( failingResults.find( "succeeded" ) != std::string::npos ) { std::cerr << "Some tests that should have failed succeeded:\n\n" << failingResults; result = 1; } else if( showAllResults ) { std::cout << failingResults << "\n\n"; } if( result == 0 ) { std::cout << "All " << runner.getSuccessCount() + runner.getFailureCount() << " tests completed successfully" << std::endl; } return result; }