diff --git a/projects/SelfTest/Baselines/console.std.approved.txt b/projects/SelfTest/Baselines/console.std.approved.txt index 73cef33c..2b312e67 100644 --- a/projects/SelfTest/Baselines/console.std.approved.txt +++ b/projects/SelfTest/Baselines/console.std.approved.txt @@ -708,7 +708,7 @@ with expansion: "this string contains 'abc' as a substring" equals: "something else" ------------------------------------------------------------------------------- -Matchers can be composed with both + and | - failing +Matchers can be composed with both && and || - failing ------------------------------------------------------------------------------- MiscTests.cpp: ............................................................................... diff --git a/projects/SelfTest/Baselines/console.sw.approved.txt b/projects/SelfTest/Baselines/console.sw.approved.txt index 082fa32d..edfedded 100644 --- a/projects/SelfTest/Baselines/console.sw.approved.txt +++ b/projects/SelfTest/Baselines/console.sw.approved.txt @@ -3419,7 +3419,7 @@ with expansion: 'abc' as a substring" ------------------------------------------------------------------------------- -Matchers can be (AllOf) composed with the + operator +Matchers can be (AllOf) composed with the && operator ------------------------------------------------------------------------------- MiscTests.cpp: ............................................................................... @@ -3432,7 +3432,7 @@ with expansion: contains: "abc" and contains: "substring" and contains: "contains" ) ------------------------------------------------------------------------------- -Matchers can be (AnyOf) composed with the | operator +Matchers can be (AnyOf) composed with the || operator ------------------------------------------------------------------------------- MiscTests.cpp: ............................................................................... @@ -3452,7 +3452,7 @@ with expansion: "string" or contains: "different" or contains: "random" ) ------------------------------------------------------------------------------- -Matchers can be composed with both + and | +Matchers can be composed with both && and || ------------------------------------------------------------------------------- MiscTests.cpp: ............................................................................... @@ -3465,7 +3465,7 @@ with expansion: contains: "different" ) and contains: "substring" ) ------------------------------------------------------------------------------- -Matchers can be composed with both + and | - failing +Matchers can be composed with both && and || - failing ------------------------------------------------------------------------------- MiscTests.cpp: ............................................................................... diff --git a/projects/SelfTest/Baselines/junit.sw.approved.txt b/projects/SelfTest/Baselines/junit.sw.approved.txt index 039aeaae..0243909e 100644 --- a/projects/SelfTest/Baselines/junit.sw.approved.txt +++ b/projects/SelfTest/Baselines/junit.sw.approved.txt @@ -438,10 +438,10 @@ MiscTests.cpp: - - - - + + + + MiscTests.cpp: diff --git a/projects/SelfTest/Baselines/xml.sw.approved.txt b/projects/SelfTest/Baselines/xml.sw.approved.txt index ed4ce494..f185891a 100644 --- a/projects/SelfTest/Baselines/xml.sw.approved.txt +++ b/projects/SelfTest/Baselines/xml.sw.approved.txt @@ -3590,7 +3590,7 @@ - + testStringForMatching() Contains( "string" ) && Contains( "abc" ) && Contains( "substring" ) && Contains( "contains" ) @@ -3601,7 +3601,7 @@ - + testStringForMatching() Contains( "string" ) || Contains( "different" ) || Contains( "random" ) @@ -3620,7 +3620,7 @@ - + testStringForMatching() ( Contains( "string" ) || Contains( "different" ) ) && Contains( "substring" ) @@ -3631,7 +3631,7 @@ - + testStringForMatching() ( Contains( "string" ) || Contains( "different" ) ) && Contains( "random" ) diff --git a/projects/SelfTest/MiscTests.cpp b/projects/SelfTest/MiscTests.cpp index c2a7784c..cf7f48cf 100644 --- a/projects/SelfTest/MiscTests.cpp +++ b/projects/SelfTest/MiscTests.cpp @@ -262,7 +262,7 @@ TEST_CASE("Equals", "[matchers]") CHECK_THAT( testStringForMatching(), Equals( "this string contains 'abc' as a substring" ) ); } -TEST_CASE("Matchers can be (AllOf) composed with the + operator", "[matchers][operators][operator+]") +TEST_CASE("Matchers can be (AllOf) composed with the && operator", "[matchers][operators][operator&&]") { CHECK_THAT( testStringForMatching(), Contains( "string" ) && @@ -271,18 +271,18 @@ TEST_CASE("Matchers can be (AllOf) composed with the + operator", "[matchers][op Contains( "contains" ) ); } -TEST_CASE("Matchers can be (AnyOf) composed with the | operator", "[matchers][operators][operator|]") +TEST_CASE("Matchers can be (AnyOf) composed with the || operator", "[matchers][operators][operator||]") { CHECK_THAT( testStringForMatching(), Contains( "string" ) || Contains( "different" ) || Contains( "random" ) ); CHECK_THAT( testStringForMatching2(), Contains( "string" ) || Contains( "different" ) || Contains( "random" ) ); } -TEST_CASE("Matchers can be composed with both + and |", "[matchers][operators][operator|][operator+]") +TEST_CASE("Matchers can be composed with both && and ||", "[matchers][operators][operator||][operator&&]") { CHECK_THAT( testStringForMatching(), ( Contains( "string" ) || Contains( "different" ) ) && Contains( "substring" ) ); } -TEST_CASE("Matchers can be composed with both + and | - failing", "[matchers][operators][operator|][operator+][.failing]") +TEST_CASE("Matchers can be composed with both && and || - failing", "[matchers][operators][operator||][operator&&][.failing]") { CHECK_THAT( testStringForMatching(), ( Contains( "string" ) || Contains( "different" ) ) && Contains( "random" ) ); }