Added nested sections test

This commit is contained in:
Phil Nash 2010-12-15 19:36:39 +00:00
parent aae41833b0
commit b3ef7fc0f2
1 changed files with 17 additions and 0 deletions

View File

@ -29,6 +29,23 @@ TEST_CASE( "succeeding/Misc/Sections", "random SECTION tests" )
}
}
TEST_CASE( "succeeding/Misc/Sections/nested", "nested SECTION tests" )
{
int a = 1;
int b = 2;
SECTION( "s1", "doesn't equal" )
{
REQUIRE( a != b );
REQUIRE( b != a );
SECTION( "s2", "not equal" )
{
REQUIRE_FALSE( a == b);
}
}
}
TEST_CASE( "succeeding/Misc/stdout,stderr", "Sends stuff to stdout and stderr" )
{
std::cout << "Some information";