Removed test for invoking String Matcher with NULL (this will no longer be supported)

This commit is contained in:
Phil Nash 2017-02-08 15:20:39 +00:00
parent 29fa1edcc7
commit 5530303be7
5 changed files with 8 additions and 35 deletions

View file

@ -243,10 +243,7 @@ TEST_CASE("Equals string matcher", "[.][failing][matchers]")
{
CHECK_THAT( testStringForMatching(), Equals( "something else" ) );
}
TEST_CASE("Equals string matcher, with NULL", "[matchers]")
{
REQUIRE_THAT("", Equals(CATCH_NULL));
}
TEST_CASE("AllOf matcher", "[matchers]")
{
CHECK_THAT( testStringForMatching(), AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) ) );