2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* 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)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-12 09:12:01 +01:00
|
|
|
#include "../catch.hpp"
|
|
|
|
#include "../catch_runner.hpp"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
// This code runs the meta tests and verifies that the failing ones failed and the successful ones succeeded
|
2010-11-29 20:40:44 +01:00
|
|
|
/*
|
2010-11-10 00:24:00 +01:00
|
|
|
int main (int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
using namespace Catch;
|
2010-11-11 08:30:44 +01:00
|
|
|
|
|
|
|
bool showAllResults = false;
|
|
|
|
if( argc > 1 && ( std::string( argv[1] ) == "-s" || std::string( argv[1] ) == "--success" ) )
|
|
|
|
showAllResults = true;
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2010-11-29 20:40:44 +01:00
|
|
|
std::ostringstream ossSucceeding;
|
|
|
|
std::ostringstream ossFailing;
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
ReporterConfig reporterConfig( ReporterConfig::Include::SuccessfulResults );
|
|
|
|
BasicReporter reporter (reporterConfig );
|
|
|
|
|
2010-11-29 20:40:44 +01:00
|
|
|
Runner runner( &reporter );
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
reporterConfig.setStreamBuf( ossSucceeding.rdbuf() );
|
|
|
|
runner.runMatching( "succeeding/*" );
|
|
|
|
std::string succeedingResults = ossSucceeding.str();
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2010-11-11 08:30:44 +01:00
|
|
|
else if( showAllResults )
|
|
|
|
{
|
|
|
|
std::cout << succeedingResults << "\n\n";
|
|
|
|
}
|
2010-11-10 00:24:00 +01:00
|
|
|
if( failingResults.find( "succeeded" ) != std::string::npos )
|
|
|
|
{
|
|
|
|
std::cerr << "Some tests that should have failed succeeded:\n\n" << failingResults;
|
|
|
|
result = 1;
|
|
|
|
}
|
2010-11-11 08:30:44 +01:00
|
|
|
else if( showAllResults )
|
|
|
|
{
|
|
|
|
std::cout << failingResults << "\n\n";
|
|
|
|
}
|
2010-11-29 20:40:44 +01:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
if( result == 0 )
|
|
|
|
{
|
2010-11-16 20:48:05 +01:00
|
|
|
const size_t expectedTestCaseCount = 99; // !TBD factor this out
|
2010-11-13 10:39:45 +01:00
|
|
|
size_t testCaseCount = runner.getSuccessCount() + runner.getFailureCount();
|
|
|
|
std::cout << "All " << testCaseCount << " tests completed successfully" << std::endl;
|
|
|
|
if( testCaseCount != expectedTestCaseCount )
|
|
|
|
{
|
|
|
|
std::cerr << "- but we were expecting " << expectedTestCaseCount
|
|
|
|
<< " test to run. Where some added or removed, or were they not compiled in?"
|
|
|
|
<< std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2010-11-29 20:40:44 +01:00
|
|
|
*/
|
|
|
|
#include "catch_default_main.hpp"
|