mirror of
https://github.com/catchorg/Catch2.git
synced 2024-12-23 03:43:28 +01:00
Fix baselines
This commit is contained in:
parent
9ba48e2c9b
commit
e4d61e4cd8
@ -395,10 +395,10 @@ Exception.tests.cpp:<line number>: passed: thisThrows(), StartsWith( "expected"
|
||||
Exception.tests.cpp:<line number>: passed: thisThrows(), EndsWith( "exception" ) for: "expected exception" ends with: "exception"
|
||||
Exception.tests.cpp:<line number>: passed: thisThrows(), Contains( "except" ) for: "expected exception" contains: "except"
|
||||
Exception.tests.cpp:<line number>: passed: thisThrows(), Contains( "exCept", Catch::CaseSensitive::No ) for: "expected exception" contains: "except" (case insensitive)
|
||||
Matchers.tests.cpp:<line number>: passed: throwsDerivedException(), DerivedException, Message("DerivedException::what") for: DerivedException::what
|
||||
Matchers.tests.cpp:<line number>: passed: throwsDerivedException(), DerivedException, !Message("derivedexception::what") for: DerivedException::what not
|
||||
Matchers.tests.cpp:<line number>: passed: throwsSpecialException(2), SpecialException, !Message("DerivedException::what") for: SpecialException::what not
|
||||
Matchers.tests.cpp:<line number>: passed: throwsSpecialException(2), SpecialException, Message("SpecialException::what") for: SpecialException::what
|
||||
Matchers.tests.cpp:<line number>: passed: throwsDerivedException(), DerivedException, Message("DerivedException::what") for: DerivedException::what exception message matches "DerivedException::what"
|
||||
Matchers.tests.cpp:<line number>: passed: throwsDerivedException(), DerivedException, !Message("derivedexception::what") for: DerivedException::what not exception message matches "derivedexception::what"
|
||||
Matchers.tests.cpp:<line number>: passed: throwsSpecialException(2), SpecialException, !Message("DerivedException::what") for: SpecialException::what not exception message matches "DerivedException::what"
|
||||
Matchers.tests.cpp:<line number>: passed: throwsSpecialException(2), SpecialException, Message("SpecialException::what") for: SpecialException::what exception message matches "SpecialException::what"
|
||||
Exception.tests.cpp:<line number>: failed: unexpected exception with message: 'expected exception'; expression was: thisThrows(), std::string
|
||||
Exception.tests.cpp:<line number>: failed: expected exception, got none; expression was: thisDoesntThrow(), std::domain_error
|
||||
Exception.tests.cpp:<line number>: failed: unexpected exception with message: 'expected exception'; expression was: thisThrows()
|
||||
|
@ -3015,22 +3015,22 @@ Matchers.tests.cpp:<line number>
|
||||
Matchers.tests.cpp:<line number>: PASSED:
|
||||
REQUIRE_THROWS_MATCHES( throwsDerivedException(), DerivedException, Message("DerivedException::what") )
|
||||
with expansion:
|
||||
DerivedException::what
|
||||
DerivedException::what exception message matches "DerivedException::what"
|
||||
|
||||
Matchers.tests.cpp:<line number>: PASSED:
|
||||
REQUIRE_THROWS_MATCHES( throwsDerivedException(), DerivedException, !Message("derivedexception::what") )
|
||||
with expansion:
|
||||
DerivedException::what not
|
||||
DerivedException::what not exception message matches "derivedexception::what"
|
||||
|
||||
Matchers.tests.cpp:<line number>: PASSED:
|
||||
REQUIRE_THROWS_MATCHES( throwsSpecialException(2), SpecialException, !Message("DerivedException::what") )
|
||||
with expansion:
|
||||
SpecialException::what not
|
||||
SpecialException::what not exception message matches "DerivedException::what"
|
||||
|
||||
Matchers.tests.cpp:<line number>: PASSED:
|
||||
REQUIRE_THROWS_MATCHES( throwsSpecialException(2), SpecialException, Message("SpecialException::what") )
|
||||
with expansion:
|
||||
SpecialException::what
|
||||
SpecialException::what exception message matches "SpecialException::what"
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
Expected exceptions that don't throw or unexpected exceptions fail the test
|
||||
|
@ -3567,7 +3567,7 @@ Nor would this
|
||||
throwsDerivedException(), DerivedException, Message("DerivedException::what")
|
||||
</Original>
|
||||
<Expanded>
|
||||
DerivedException::what
|
||||
DerivedException::what exception message matches "DerivedException::what"
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<Expression success="true" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/UsageTests/Matchers.tests.cpp" >
|
||||
@ -3575,7 +3575,7 @@ Nor would this
|
||||
throwsDerivedException(), DerivedException, !Message("derivedexception::what")
|
||||
</Original>
|
||||
<Expanded>
|
||||
DerivedException::what not
|
||||
DerivedException::what not exception message matches "derivedexception::what"
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<Expression success="true" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/UsageTests/Matchers.tests.cpp" >
|
||||
@ -3583,7 +3583,7 @@ Nor would this
|
||||
throwsSpecialException(2), SpecialException, !Message("DerivedException::what")
|
||||
</Original>
|
||||
<Expanded>
|
||||
SpecialException::what not
|
||||
SpecialException::what not exception message matches "DerivedException::what"
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<Expression success="true" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/UsageTests/Matchers.tests.cpp" >
|
||||
@ -3591,7 +3591,7 @@ Nor would this
|
||||
throwsSpecialException(2), SpecialException, Message("SpecialException::what")
|
||||
</Original>
|
||||
<Expanded>
|
||||
SpecialException::what
|
||||
SpecialException::what exception message matches "SpecialException::what"
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<OverallResult success="true"/>
|
||||
|
Loading…
Reference in New Issue
Block a user