Support [.] as alias for [hide]

This commit is contained in:
Phil Nash
2013-06-28 16:05:13 +01:00
parent 235204393a
commit 9c39a5e8dd
4 changed files with 9 additions and 9 deletions

View File

@@ -92,11 +92,11 @@ TEST_CASE( "./succeeding/nofail", "The NO_FAIL macro reports a failure but does
CHECK_NOFAIL( 1 == 2 );
}
TEST_CASE( "just info", "[info][isolated info][hide]" )
TEST_CASE( "just info", "[info][isolated info][.]" )
{
INFO( "this should never be seen" );
}
TEST_CASE( "just failure", "[fail][isolated info][hide]" )
TEST_CASE( "just failure", "[fail][isolated info][.]" )
{
FAIL( "Previous info should not be seen" );
}