mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Fixed broken test
This commit is contained in:
parent
066a6388d6
commit
109f46a48b
@ -361,7 +361,7 @@ class ClassName {};
|
||||
TEST_CASE( "pointer to class", "" )
|
||||
{
|
||||
ClassName *p = 0;
|
||||
REQUIRE( p != 0 );
|
||||
REQUIRE( p == 0 );
|
||||
}
|
||||
|
||||
#ifdef CATCH_CONFIG_CPP11_NULLPTR
|
||||
@ -375,3 +375,8 @@ TEST_CASE( "null_ptr", "" )
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
TEST_CASE( "X/level/0/a", "" ) { SUCCEED(""); }
|
||||
TEST_CASE( "X/level/0/b", "[fizz]" ) { SUCCEED(""); }
|
||||
TEST_CASE( "X/level/1/a", "" ) { SUCCEED(""); }
|
||||
TEST_CASE( "X/level/1/b", "" ) { SUCCEED("");}
|
||||
|
Loading…
Reference in New Issue
Block a user