More complete fix for nested sections

This commit is contained in:
Phil Nash
2011-02-21 08:50:05 +00:00
parent 70e7d7f16b
commit a243a23363
2 changed files with 214 additions and 78 deletions

View File

@@ -59,12 +59,16 @@ TEST_CASE( "./succeeding/Misc/Sections/nested2", "nested SECTION tests" )
SECTION( "s2", "equal" )
{
REQUIRE( a == b);
REQUIRE( a == b );
}
SECTION( "s3", "not equal" )
{
REQUIRE( a != b);
REQUIRE( a != b );
}
SECTION( "s4", "less than" )
{
REQUIRE( b < a );
}
}
}