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