1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-01 21:03:52 +00:00

Mark CHECKed-throw test as [failing]

This commit is contained in:
Phil Nash 2017-01-24 09:53:04 +00:00
parent 7bcb42496d
commit 6c23a6582b

View File

@ -73,7 +73,7 @@ TEST_CASE( "When unchecked exceptions are thrown during a REQUIRE the test shoul
FAIL( "This should never happen" );
}
TEST_CASE( "When unchecked exceptions are thrown during a CHECK the test should continue", "[!throws]" )
TEST_CASE( "When unchecked exceptions are thrown during a CHECK the test should continue", "[.][failing][!throws]" )
{
try {
CHECK(thisThrows() == 0);