Update approvals after removing deprecated matcher helpers

This commit is contained in:
Martin Hořeňovský
2017-08-31 11:50:34 +02:00
parent e8ec6bd73c
commit 4e4a13dfb4
4 changed files with 7 additions and 72 deletions

View File

@@ -508,19 +508,6 @@ PASSED:
with expansion:
100.3 == Approx( 100.0 )
-------------------------------------------------------------------------------
AllOf matcher
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) ) )
with expansion:
"this string contains 'abc' as a substring" ( contains: "string" and
contains: "abc" )
-------------------------------------------------------------------------------
An expression with side-effects should only be evaluated once
-------------------------------------------------------------------------------
@@ -565,26 +552,6 @@ PASSED:
with message:
anonymous test case
-------------------------------------------------------------------------------
AnyOf matcher
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), AnyOf( Catch::Contains( "string" ), Catch::Contains( "not there" ) ) )
with expansion:
"this string contains 'abc' as a substring" ( contains: "string" or contains:
"not there" )
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), AnyOf( Catch::Contains( "not there" ), Catch::Contains( "string" ) ) )
with expansion:
"this string contains 'abc' as a substring" ( contains: "not there" or
contains: "string" )
-------------------------------------------------------------------------------
Approximate PI
-------------------------------------------------------------------------------
@@ -7554,6 +7521,6 @@ MiscTests.cpp:<line number>:
PASSED:
===============================================================================
test cases: 184 | 130 passed | 50 failed | 4 failed as expected
assertions: 886 | 763 passed | 102 failed | 21 failed as expected
test cases: 182 | 128 passed | 50 failed | 4 failed as expected
assertions: 883 | 760 passed | 102 failed | 21 failed as expected