mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Rebased
This commit is contained in:
parent
3f9e3e21ea
commit
3dc3763b07
@ -759,7 +759,7 @@ warning:
|
|||||||
error
|
error
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
A failing expression with a non streamable type is still captured[failing]
|
A failing expression with a non streamable type is still captured
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@ -775,7 +775,7 @@ with expansion:
|
|||||||
{?} == {?}
|
{?} == {?}
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
string literals of different sizes can be compared[failing]
|
string literals of different sizes can be compared
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@ -786,6 +786,6 @@ with expansion:
|
|||||||
"first" == "second"
|
"first" == "second"
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 148 | 109 passed | 38 failed | 1 failed as expected
|
test cases: 149 | 110 passed | 38 failed | 1 failed as expected
|
||||||
assertions: 739 | 647 passed | 79 failed | 13 failed as expected
|
assertions: 751 | 659 passed | 79 failed | 13 failed as expected
|
||||||
|
|
||||||
|
@ -4518,6 +4518,120 @@ with expansion:
|
|||||||
five
|
five
|
||||||
six"
|
six"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
replaceInPlace
|
||||||
|
replace single char
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
TestMain.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( replaceInPlace( letters, "b", "z" ) )
|
||||||
|
with expansion:
|
||||||
|
true
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( letters == "azcdefcg" )
|
||||||
|
with expansion:
|
||||||
|
"azcdefcg" == "azcdefcg"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
replaceInPlace
|
||||||
|
replace two chars
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
TestMain.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( replaceInPlace( letters, "c", "z" ) )
|
||||||
|
with expansion:
|
||||||
|
true
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( letters == "abzdefzg" )
|
||||||
|
with expansion:
|
||||||
|
"abzdefzg" == "abzdefzg"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
replaceInPlace
|
||||||
|
replace first char
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
TestMain.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( replaceInPlace( letters, "a", "z" ) )
|
||||||
|
with expansion:
|
||||||
|
true
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( letters == "zbcdefcg" )
|
||||||
|
with expansion:
|
||||||
|
"zbcdefcg" == "zbcdefcg"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
replaceInPlace
|
||||||
|
replace last char
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
TestMain.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( replaceInPlace( letters, "g", "z" ) )
|
||||||
|
with expansion:
|
||||||
|
true
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( letters == "abcdefcz" )
|
||||||
|
with expansion:
|
||||||
|
"abcdefcz" == "abcdefcz"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
replaceInPlace
|
||||||
|
replace all chars
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
TestMain.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( replaceInPlace( letters, letters, "replaced" ) )
|
||||||
|
with expansion:
|
||||||
|
true
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( letters == "replaced" )
|
||||||
|
with expansion:
|
||||||
|
"replaced" == "replaced"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
replaceInPlace
|
||||||
|
replace no chars
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
TestMain.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK_FALSE( replaceInPlace( letters, "x", "z" ) )
|
||||||
|
with expansion:
|
||||||
|
!false
|
||||||
|
|
||||||
|
TestMain.cpp:<line number>:
|
||||||
|
PASSED:
|
||||||
|
CHECK( letters == letters )
|
||||||
|
with expansion:
|
||||||
|
"abcdefcg" == "abcdefcg"
|
||||||
|
|
||||||
hello
|
hello
|
||||||
hello
|
hello
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
@ -5604,7 +5718,7 @@ warning:
|
|||||||
No assertions in test case 'Where the LHS is not a simple value[failing]'
|
No assertions in test case 'Where the LHS is not a simple value[failing]'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
A failing expression with a non streamable type is still captured[failing]
|
A failing expression with a non streamable type is still captured
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@ -5620,7 +5734,7 @@ with expansion:
|
|||||||
{?} == {?}
|
{?} == {?}
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
string literals of different sizes can be compared[failing]
|
string literals of different sizes can be compared
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@ -7683,6 +7797,6 @@ with expansion:
|
|||||||
true
|
true
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 148 | 93 passed | 54 failed | 1 failed as expected
|
test cases: 149 | 94 passed | 54 failed | 1 failed as expected
|
||||||
assertions: 759 | 647 passed | 99 failed | 13 failed as expected
|
assertions: 771 | 659 passed | 99 failed | 13 failed as expected
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="all tests" errors="12" failures="87" tests="759" hostname="tbd" time="{duration}" timestamp="tbd">
|
<testsuite name="all tests" errors="12" failures="87" tests="771" hostname="tbd" time="{duration}" timestamp="tbd">
|
||||||
<testcase classname="global" name="toString(enum)" time="{duration}"/>
|
<testcase classname="global" name="toString(enum)" time="{duration}"/>
|
||||||
<testcase classname="global" name="toString(enum w/operator<<)" time="{duration}"/>
|
<testcase classname="global" name="toString(enum w/operator<<)" time="{duration}"/>
|
||||||
<testcase classname="global" name="toString(enum class)" time="{duration}"/>
|
<testcase classname="global" name="toString(enum class)" time="{duration}"/>
|
||||||
@ -485,6 +485,12 @@ MiscTests.cpp:<line number>
|
|||||||
<testcase classname="Long strings can be wrapped" name="With newlines/Wrapped once" time="{duration}"/>
|
<testcase classname="Long strings can be wrapped" name="With newlines/Wrapped once" time="{duration}"/>
|
||||||
<testcase classname="Long strings can be wrapped" name="With newlines/Wrapped twice" time="{duration}"/>
|
<testcase classname="Long strings can be wrapped" name="With newlines/Wrapped twice" time="{duration}"/>
|
||||||
<testcase classname="Long strings can be wrapped" name="With tabs" time="{duration}"/>
|
<testcase classname="Long strings can be wrapped" name="With tabs" time="{duration}"/>
|
||||||
|
<testcase classname="replaceInPlace" name="replace single char" time="{duration}"/>
|
||||||
|
<testcase classname="replaceInPlace" name="replace two chars" time="{duration}"/>
|
||||||
|
<testcase classname="replaceInPlace" name="replace first char" time="{duration}"/>
|
||||||
|
<testcase classname="replaceInPlace" name="replace last char" time="{duration}"/>
|
||||||
|
<testcase classname="replaceInPlace" name="replace all chars" time="{duration}"/>
|
||||||
|
<testcase classname="replaceInPlace" name="replace no chars" time="{duration}"/>
|
||||||
<testcase classname="global" name="Strings can be rendered with colour" time="{duration}">
|
<testcase classname="global" name="Strings can be rendered with colour" time="{duration}">
|
||||||
<system-out>
|
<system-out>
|
||||||
hello
|
hello
|
||||||
@ -496,7 +502,7 @@ hello
|
|||||||
<testcase classname="global" name="Parsing a std::pair" time="{duration}"/>
|
<testcase classname="global" name="Parsing a std::pair" time="{duration}"/>
|
||||||
<testcase classname="global" name="Where the is more to the expression after the RHS[failing]" time="{duration}"/>
|
<testcase classname="global" name="Where the is more to the expression after the RHS[failing]" time="{duration}"/>
|
||||||
<testcase classname="global" name="Where the LHS is not a simple value[failing]" time="{duration}"/>
|
<testcase classname="global" name="Where the LHS is not a simple value[failing]" time="{duration}"/>
|
||||||
<testcase classname="global" name="A failing expression with a non streamable type is still captured[failing]" time="{duration}">
|
<testcase classname="global" name="A failing expression with a non streamable type is still captured" time="{duration}">
|
||||||
<failure message="0x<hex digits> == 0x<hex digits>" type="CHECK">
|
<failure message="0x<hex digits> == 0x<hex digits>" type="CHECK">
|
||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
</failure>
|
</failure>
|
||||||
@ -504,7 +510,7 @@ TrickyTests.cpp:<line number>
|
|||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
</failure>
|
</failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase classname="global" name="string literals of different sizes can be compared[failing]" time="{duration}">
|
<testcase classname="global" name="string literals of different sizes can be compared" time="{duration}">
|
||||||
<failure message=""first" == "second"" type="REQUIRE">
|
<failure message=""first" == "second"" type="REQUIRE">
|
||||||
TrickyTests.cpp:<line number>
|
TrickyTests.cpp:<line number>
|
||||||
</failure>
|
</failure>
|
||||||
|
@ -4714,6 +4714,123 @@ four"
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true"/>
|
<OverallResult success="true"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
|
<TestCase name="replaceInPlace">
|
||||||
|
<Section name="replace single char">
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
replaceInPlace( letters, "b", "z" )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
true
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
letters == "azcdefcg"
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
"azcdefcg" == "azcdefcg"
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0"/>
|
||||||
|
</Section>
|
||||||
|
<Section name="replace two chars">
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
replaceInPlace( letters, "c", "z" )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
true
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
letters == "abzdefzg"
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
"abzdefzg" == "abzdefzg"
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0"/>
|
||||||
|
</Section>
|
||||||
|
<Section name="replace first char">
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
replaceInPlace( letters, "a", "z" )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
true
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
letters == "zbcdefcg"
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
"zbcdefcg" == "zbcdefcg"
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0"/>
|
||||||
|
</Section>
|
||||||
|
<Section name="replace last char">
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
replaceInPlace( letters, "g", "z" )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
true
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
letters == "abcdefcz"
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
"abcdefcz" == "abcdefcz"
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0"/>
|
||||||
|
</Section>
|
||||||
|
<Section name="replace all chars">
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
replaceInPlace( letters, letters, "replaced" )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
true
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
letters == "replaced"
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
"replaced" == "replaced"
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0"/>
|
||||||
|
</Section>
|
||||||
|
<Section name="replace no chars">
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
!replaceInPlace( letters, "x", "z" )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
!false
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" filename="projects/SelfTest/TestMain.cpp" >
|
||||||
|
<Original>
|
||||||
|
letters == letters
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
"abcdefcg" == "abcdefcg"
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0"/>
|
||||||
|
</Section>
|
||||||
|
<OverallResult success="true"/>
|
||||||
|
</TestCase>
|
||||||
<TestCase name="Strings can be rendered with colour">
|
<TestCase name="Strings can be rendered with colour">
|
||||||
<OverallResult success="true"/>
|
<OverallResult success="true"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
@ -5774,7 +5891,7 @@ there"
|
|||||||
</Warning>
|
</Warning>
|
||||||
<OverallResult success="true"/>
|
<OverallResult success="true"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="A failing expression with a non streamable type is still captured[failing]">
|
<TestCase name="A failing expression with a non streamable type is still captured">
|
||||||
<Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
|
<Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
&o1 == &o2
|
&o1 == &o2
|
||||||
@ -5793,7 +5910,7 @@ there"
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="false"/>
|
<OverallResult success="false"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="string literals of different sizes can be compared[failing]">
|
<TestCase name="string literals of different sizes can be compared">
|
||||||
<Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
|
<Expression success="false" filename="projects/SelfTest/TrickyTests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
std::string( "first" ) == "second"
|
std::string( "first" ) == "second"
|
||||||
@ -7950,7 +8067,7 @@ there"
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true"/>
|
<OverallResult success="true"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<OverallResults successes="647" failures="99" expectedFailures="13"/>
|
<OverallResults successes="659" failures="99" expectedFailures="13"/>
|
||||||
</Group>
|
</Group>
|
||||||
<OverallResults successes="647" failures="99" expectedFailures="13"/>
|
<OverallResults successes="659" failures="99" expectedFailures="13"/>
|
||||||
</Catch>
|
</Catch>
|
||||||
|
Loading…
Reference in New Issue
Block a user