mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-20 11:35:39 +02:00
Cleaned up some stray tests
This commit is contained in:
@@ -243,11 +243,11 @@ TEST_CASE("./failing/matchers/Equals", "")
|
||||
//{
|
||||
// REQUIRE_THAT("", Equals(NULL));
|
||||
//}
|
||||
TEST_CASE("/succeeding/matchers/AllOf", "")
|
||||
TEST_CASE("./succeeding/matchers/AllOf", "")
|
||||
{
|
||||
CHECK_THAT( testStringForMatching(), AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) ) );
|
||||
}
|
||||
TEST_CASE("/succeeding/matchers/AnyOf", "")
|
||||
TEST_CASE("./succeeding/matchers/AnyOf", "")
|
||||
{
|
||||
CHECK_THAT( testStringForMatching(), AnyOf( Catch::Contains( "string" ), Catch::Contains( "not there" ) ) );
|
||||
CHECK_THAT( testStringForMatching(), AnyOf( Catch::Contains( "not there" ), Catch::Contains( "string" ) ) );
|
||||
|
Reference in New Issue
Block a user