mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Removed test for invoking String Matcher with NULL (this will no longer be supported)
This commit is contained in:
parent
29fa1edcc7
commit
5530303be7
@ -829,6 +829,6 @@ with expansion:
|
|||||||
"first" == "second"
|
"first" == "second"
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 161 | 117 passed | 42 failed | 2 failed as expected
|
test cases: 160 | 116 passed | 42 failed | 2 failed as expected
|
||||||
assertions: 932 | 836 passed | 78 failed | 18 failed as expected
|
assertions: 931 | 835 passed | 78 failed | 18 failed as expected
|
||||||
|
|
||||||
|
@ -1054,18 +1054,6 @@ MiscTests.cpp:<line number>: FAILED:
|
|||||||
with expansion:
|
with expansion:
|
||||||
"this string contains 'abc' as a substring" equals: "something else"
|
"this string contains 'abc' as a substring" equals: "something else"
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
Equals string matcher, with NULL
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
MiscTests.cpp:<line number>
|
|
||||||
...............................................................................
|
|
||||||
|
|
||||||
MiscTests.cpp:<line number>:
|
|
||||||
PASSED:
|
|
||||||
REQUIRE_THAT( "", Equals(0) )
|
|
||||||
with expansion:
|
|
||||||
"" equals: ""
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Exception messages can be tested for
|
Exception messages can be tested for
|
||||||
exact match
|
exact match
|
||||||
@ -9164,6 +9152,6 @@ MiscTests.cpp:<line number>:
|
|||||||
PASSED:
|
PASSED:
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 161 | 116 passed | 43 failed | 2 failed as expected
|
test cases: 160 | 115 passed | 43 failed | 2 failed as expected
|
||||||
assertions: 934 | 836 passed | 80 failed | 18 failed as expected
|
assertions: 933 | 835 passed | 80 failed | 18 failed as expected
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<testsuitesspanner>
|
<testsuitesspanner>
|
||||||
<testsuite name="<exe-name>" errors="13" failures="68" tests="935" hostname="tbd" time="{duration}" timestamp="{iso8601-timestamp}">
|
<testsuite name="<exe-name>" errors="13" failures="68" tests="934" hostname="tbd" time="{duration}" timestamp="{iso8601-timestamp}">
|
||||||
<testcase classname="global" name="# A test name that starts with a #" time="{duration}"/>
|
<testcase classname="global" name="# A test name that starts with a #" time="{duration}"/>
|
||||||
<testcase classname="global" name="#542" time="{duration}"/>
|
<testcase classname="global" name="#542" time="{duration}"/>
|
||||||
<testcase classname="global" name="#809" time="{duration}"/>
|
<testcase classname="global" name="#809" time="{duration}"/>
|
||||||
@ -167,7 +167,6 @@ ConditionTests.cpp:<line number>
|
|||||||
MiscTests.cpp:<line number>
|
MiscTests.cpp:<line number>
|
||||||
</failure>
|
</failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase classname="global" name="Equals string matcher, with NULL" time="{duration}"/>
|
|
||||||
<testcase classname="Exception messages can be tested for" name="exact match" time="{duration}"/>
|
<testcase classname="Exception messages can be tested for" name="exact match" time="{duration}"/>
|
||||||
<testcase classname="Exception messages can be tested for" name="different case" time="{duration}"/>
|
<testcase classname="Exception messages can be tested for" name="different case" time="{duration}"/>
|
||||||
<testcase classname="Exception messages can be tested for" name="wildcarded" time="{duration}"/>
|
<testcase classname="Exception messages can be tested for" name="wildcarded" time="{duration}"/>
|
||||||
|
@ -1182,17 +1182,6 @@
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="false"/>
|
<OverallResult success="false"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Equals string matcher, with NULL" tags="[matchers]">
|
|
||||||
<Expression success="true" type="REQUIRE_THAT" filename="projects/<exe-name>/MiscTests.cpp" >
|
|
||||||
<Original>
|
|
||||||
"", Equals(0)
|
|
||||||
</Original>
|
|
||||||
<Expanded>
|
|
||||||
"" equals: ""
|
|
||||||
</Expanded>
|
|
||||||
</Expression>
|
|
||||||
<OverallResult success="true"/>
|
|
||||||
</TestCase>
|
|
||||||
<TestCase name="Exception messages can be tested for" tags="[!throws]">
|
<TestCase name="Exception messages can be tested for" tags="[!throws]">
|
||||||
<Section name="exact match">
|
<Section name="exact match">
|
||||||
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/<exe-name>/ExceptionTests.cpp" >
|
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/<exe-name>/ExceptionTests.cpp" >
|
||||||
@ -9693,7 +9682,7 @@ spanner <OverallResult success="true"/>
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true"/>
|
<OverallResult success="true"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<OverallResults successes="836" failures="81" expectedFailures="18"/>
|
<OverallResults successes="835" failures="81" expectedFailures="18"/>
|
||||||
</Group>
|
</Group>
|
||||||
<OverallResults successes="836" failures="80" expectedFailures="18"/>
|
<OverallResults successes="835" failures="80" expectedFailures="18"/>
|
||||||
</Catch>
|
</Catch>
|
||||||
|
@ -243,10 +243,7 @@ TEST_CASE("Equals string matcher", "[.][failing][matchers]")
|
|||||||
{
|
{
|
||||||
CHECK_THAT( testStringForMatching(), Equals( "something else" ) );
|
CHECK_THAT( testStringForMatching(), Equals( "something else" ) );
|
||||||
}
|
}
|
||||||
TEST_CASE("Equals string matcher, with NULL", "[matchers]")
|
|
||||||
{
|
|
||||||
REQUIRE_THAT("", Equals(CATCH_NULL));
|
|
||||||
}
|
|
||||||
TEST_CASE("AllOf matcher", "[matchers]")
|
TEST_CASE("AllOf matcher", "[matchers]")
|
||||||
{
|
{
|
||||||
CHECK_THAT( testStringForMatching(), AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) ) );
|
CHECK_THAT( testStringForMatching(), AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) ) );
|
||||||
|
Loading…
Reference in New Issue
Block a user