mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-13 01:19:54 +01:00
Update Baselines
This commit is contained in:
parent
87a66b8479
commit
74ab1cd94b
@ -282,11 +282,11 @@ MatchersTests.cpp:<line number>
|
||||
...............................................................................
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
|
||||
because no exception was thrown where one was expected:
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
|
||||
because no exception was thrown where one was expected:
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
@ -297,12 +297,12 @@ MatchersTests.cpp:<line number>
|
||||
...............................................................................
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
CHECK_THROWS_MATCHES( throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 } )
|
||||
due to unexpected exception with message:
|
||||
Unknown exception
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
REQUIRE_THROWS_MATCHES( throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
REQUIRE_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 } )
|
||||
due to unexpected exception with message:
|
||||
Unknown exception
|
||||
|
||||
@ -314,12 +314,12 @@ MatchersTests.cpp:<line number>
|
||||
...............................................................................
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
CHECK_THROWS_MATCHES( throws(3), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( throws(3), SpecialException, ExceptionMatcher{ 1 } )
|
||||
with expansion:
|
||||
{?} special exception has value of 1
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
REQUIRE_THROWS_MATCHES( throws(4), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
REQUIRE_THROWS_MATCHES( throws(4), SpecialException, ExceptionMatcher{ 1 } )
|
||||
with expansion:
|
||||
{?} special exception has value of 1
|
||||
|
||||
|
@ -88,7 +88,7 @@ PASSED:
|
||||
|
||||
CompilationTests.cpp:<line number>:
|
||||
PASSED:
|
||||
CHECK_THROWS_AS( throws_int(true), const int& )
|
||||
CHECK_THROWS_AS( throws_int(true), int )
|
||||
|
||||
CompilationTests.cpp:<line number>:
|
||||
PASSED:
|
||||
@ -1359,11 +1359,11 @@ MatchersTests.cpp:<line number>
|
||||
...............................................................................
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
|
||||
because no exception was thrown where one was expected:
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
|
||||
because no exception was thrown where one was expected:
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
@ -1374,12 +1374,12 @@ MatchersTests.cpp:<line number>
|
||||
...............................................................................
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
CHECK_THROWS_MATCHES( throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 } )
|
||||
due to unexpected exception with message:
|
||||
Unknown exception
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
REQUIRE_THROWS_MATCHES( throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
REQUIRE_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 } )
|
||||
due to unexpected exception with message:
|
||||
Unknown exception
|
||||
|
||||
@ -1391,12 +1391,12 @@ MatchersTests.cpp:<line number>
|
||||
...............................................................................
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
CHECK_THROWS_MATCHES( throws(3), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( throws(3), SpecialException, ExceptionMatcher{ 1 } )
|
||||
with expansion:
|
||||
{?} special exception has value of 1
|
||||
|
||||
MatchersTests.cpp:<line number>: FAILED:
|
||||
REQUIRE_THROWS_MATCHES( throws(4), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
REQUIRE_THROWS_MATCHES( throws(4), SpecialException, ExceptionMatcher{ 1 } )
|
||||
with expansion:
|
||||
{?} special exception has value of 1
|
||||
|
||||
@ -1408,13 +1408,13 @@ MatchersTests.cpp:<line number>
|
||||
|
||||
MatchersTests.cpp:<line number>:
|
||||
PASSED:
|
||||
CHECK_THROWS_MATCHES( throws(1), SpecialException const&, ExceptionMatcher{ 1 } )
|
||||
CHECK_THROWS_MATCHES( throws(1), SpecialException, ExceptionMatcher{ 1 } )
|
||||
with expansion:
|
||||
{?} special exception has value of 1
|
||||
|
||||
MatchersTests.cpp:<line number>:
|
||||
PASSED:
|
||||
REQUIRE_THROWS_MATCHES( throws(2), SpecialException const&, ExceptionMatcher{ 2 } )
|
||||
REQUIRE_THROWS_MATCHES( throws(2), SpecialException, ExceptionMatcher{ 2 } )
|
||||
with expansion:
|
||||
{?} special exception has value of 2
|
||||
|
||||
|
@ -88,7 +88,7 @@ PASSED:
|
||||
|
||||
CompilationTests.cpp:<line number>:
|
||||
PASSED:
|
||||
CHECK_THROWS_AS( throws_int(true), const int& )
|
||||
CHECK_THROWS_AS( throws_int(true), int )
|
||||
|
||||
CompilationTests.cpp:<line number>:
|
||||
PASSED:
|
||||
|
@ -194,19 +194,19 @@ MatchersTests.cpp:<line number>
|
||||
</failure>
|
||||
</testcase>
|
||||
<testcase classname="<exe-name>.global" name="Exception matchers that fail/No exception" time="{duration}">
|
||||
<failure message="doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 }" type="CHECK_THROWS_MATCHES">
|
||||
<failure message="doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }" type="CHECK_THROWS_MATCHES">
|
||||
MatchersTests.cpp:<line number>
|
||||
</failure>
|
||||
<failure message="doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 }" type="REQUIRE_THROWS_MATCHES">
|
||||
<failure message="doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }" type="REQUIRE_THROWS_MATCHES">
|
||||
MatchersTests.cpp:<line number>
|
||||
</failure>
|
||||
</testcase>
|
||||
<testcase classname="<exe-name>.global" name="Exception matchers that fail/Type mismatch" time="{duration}">
|
||||
<error message="throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 }" type="CHECK_THROWS_MATCHES">
|
||||
<error message="throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 }" type="CHECK_THROWS_MATCHES">
|
||||
Unknown exception
|
||||
MatchersTests.cpp:<line number>
|
||||
</error>
|
||||
<error message="throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 }" type="REQUIRE_THROWS_MATCHES">
|
||||
<error message="throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 }" type="REQUIRE_THROWS_MATCHES">
|
||||
Unknown exception
|
||||
MatchersTests.cpp:<line number>
|
||||
</error>
|
||||
|
@ -85,10 +85,10 @@
|
||||
</Expression>
|
||||
<Expression success="true" type="CHECK_THROWS_AS" filename="projects/<exe-name>/CompilationTests.cpp" >
|
||||
<Original>
|
||||
throws_int(true), const int&
|
||||
throws_int(true), int
|
||||
</Original>
|
||||
<Expanded>
|
||||
throws_int(true), const int&
|
||||
throws_int(true), int
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<Expression success="true" type="REQUIRE_NOTHROW" filename="projects/<exe-name>/CompilationTests.cpp" >
|
||||
@ -1558,18 +1558,18 @@
|
||||
<Section name="No exception" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Expression success="false" type="CHECK_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<Expression success="false" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
doesNotThrow(), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
doesNotThrow(), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Expanded>
|
||||
</Expression>
|
||||
<OverallResults successes="0" failures="2" expectedFailures="0"/>
|
||||
@ -1577,10 +1577,10 @@
|
||||
<Section name="Type mismatch" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Expression success="false" type="CHECK_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Expanded>
|
||||
<Exception filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
Unknown exception
|
||||
@ -1588,10 +1588,10 @@
|
||||
</Expression>
|
||||
<Expression success="false" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
throwsAsInt(1), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Expanded>
|
||||
<Exception filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
Unknown exception
|
||||
@ -1602,7 +1602,7 @@
|
||||
<Section name="Contents are wrong" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Expression success="false" type="CHECK_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
throws(3), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throws(3), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
{?} special exception has value of 1
|
||||
@ -1610,7 +1610,7 @@
|
||||
</Expression>
|
||||
<Expression success="false" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
throws(4), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throws(4), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
{?} special exception has value of 1
|
||||
@ -1623,7 +1623,7 @@
|
||||
<TestCase name="Exception matchers that succeed" tags="[!throws][exceptions][matchers]" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Expression success="true" type="CHECK_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
throws(1), SpecialException const&, ExceptionMatcher{ 1 }
|
||||
throws(1), SpecialException, ExceptionMatcher{ 1 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
{?} special exception has value of 1
|
||||
@ -1631,7 +1631,7 @@
|
||||
</Expression>
|
||||
<Expression success="true" type="REQUIRE_THROWS_MATCHES" filename="projects/<exe-name>/MatchersTests.cpp" >
|
||||
<Original>
|
||||
throws(2), SpecialException const&, ExceptionMatcher{ 2 }
|
||||
throws(2), SpecialException, ExceptionMatcher{ 2 }
|
||||
</Original>
|
||||
<Expanded>
|
||||
{?} special exception has value of 2
|
||||
|
Loading…
Reference in New Issue
Block a user