Reinstated #include that broke single include

This commit is contained in:
Phil Nash
2012-05-22 22:21:17 +01:00
parent 7004f4a234
commit 1787da54a7
4 changed files with 11 additions and 1 deletions

View File

@@ -75,3 +75,12 @@ TEST_CASE( "./succeeding/message/sections/stdout", "Output from all sections is
std::cout << "Message from section two" << std::endl;
}
}
TEST_CASE( "./mixed/message/scoped", "" )
{
for( int i=0; i<100; i++ )
{
SCOPED_INFO( "current counter " << i );
REQUIRE( i < 10 );
}
}

View File

@@ -9,7 +9,6 @@
#define TWOBLUECUBES_CATCH_SELF_TEST_HPP_INCLUDED
#include "catch.hpp"
#include "catch_test_case_info.hpp"
#include "set"