2013-09-27 20:01:14 +02:00
<Catch name="CatchSelfTest">
2014-09-08 09:14:22 +02:00
<Group name="all tests">
2014-09-03 20:22:47 +02:00
<TestCase name="toString(enum)">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e0) == "0"
</Original>
<Expanded>
"0" == "0"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e1) == "1"
</Original>
<Expanded>
"1" == "1"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString(enum w/operator<<)">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e0) == "E2{0}"
</Original>
<Expanded>
"E2{0}" == "E2{0}"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e1) == "E2{1}"
</Original>
<Expanded>
"E2{1}" == "E2{1}"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString(enum class)">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e0) == "0"
</Original>
<Expanded>
"0" == "0"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e1) == "1"
</Original>
<Expanded>
"1" == "1"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString(enum class w/operator<<)">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e0) == "E2/V0"
</Original>
<Expanded>
"E2/V0" == "E2/V0"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(e1) == "E2/V1"
</Original>
<Expanded>
"E2/V1" == "E2/V1"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/EnumToString.cpp" >
2014-09-04 08:27:09 +02:00
<Original>
Catch::toString(e3) == "Unknown enum value 10"
</Original>
<Expanded>
"Unknown enum value 10"
==
"Unknown enum value 10"
</Expanded>
</Expression>
2014-09-03 20:22:47 +02:00
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Some simple comparisons between doubles">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d == Approx( 1.23 )
</Original>
<Expanded>
1.23 == Approx( 1.23 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d != Approx( 1.22 )
</Original>
<Expanded>
1.23 != Approx( 1.22 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d != Approx( 1.24 )
</Original>
<Expanded>
1.23 != Approx( 1.24 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Approx( d ) == 1.23
</Original>
<Expanded>
Approx( 1.23 ) == 1.23
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Approx( d ) != 1.22
</Original>
<Expanded>
Approx( 1.23 ) != 1.22
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Approx( d ) != 1.24
</Original>
<Expanded>
Approx( 1.23 ) != 1.24
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Approximate comparisons with different epsilons">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d != Approx( 1.231 )
</Original>
<Expanded>
1.23 != Approx( 1.231 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d == Approx( 1.231 ).epsilon( 0.1 )
</Original>
<Expanded>
1.23 == Approx( 1.231 )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Approximate comparisons with floats">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1.23f == Approx( 1.23f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
1.23f == Approx( 1.2300000191 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
0.0f == Approx( 0.0f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
0.0f == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Approximate comparisons with ints">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1 == Approx( 1 )
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
1 == Approx( 1.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
0 == Approx( 0 )
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
0 == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Approximate comparisons with mixed numeric types">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1.0f == Approx( 1 )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
1.0f == Approx( 1.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
0 == Approx( dZero)
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
0 == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
0 == Approx( dSmall ).epsilon( 0.001 )
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
0 == Approx( 0.00001 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1.234f == Approx( dMedium )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
1.234f == Approx( 1.234 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
dMedium == Approx( 1.234f )
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
1.234 == Approx( 1.2339999676 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Use a custom approx">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d == approx( 1.23 )
</Original>
<Expanded>
1.23 == Approx( 1.23 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d == approx( 1.22 )
</Original>
<Expanded>
1.23 == Approx( 1.22 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d == approx( 1.24 )
</Original>
<Expanded>
1.23 == Approx( 1.24 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
d != approx( 1.25 )
</Original>
<Expanded>
1.23 != Approx( 1.25 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
approx( d ) == 1.23
</Original>
<Expanded>
Approx( 1.23 ) == 1.23
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
approx( d ) == 1.22
</Original>
<Expanded>
Approx( 1.23 ) == 1.22
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
approx( d ) == 1.24
</Original>
<Expanded>
Approx( 1.23 ) == 1.24
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
approx( d ) != 1.25
</Original>
<Expanded>
Approx( 1.23 ) != 1.25
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Approximate PI">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 )
</Original>
<Expanded>
3.1428571429 == Approx( 3.141 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ApproxTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 )
</Original>
<Expanded>
3.1428571429 != Approx( 3.141 )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="A METHOD_AS_TEST_CASE based test run that succeeds">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ClassTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
s == "hello"
</Original>
<Expanded>
"hello" == "hello"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="A METHOD_AS_TEST_CASE based test run that fails">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/ClassTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
s == "world"
</Original>
<Expanded>
"hello" == "world"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="A TEST_CASE_METHOD based test run that succeeds">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ClassTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
m_a == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="A TEST_CASE_METHOD based test run that fails">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/ClassTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
m_a == 2
</Original>
<Expanded>
1 == 2
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Equality checks that should succeed">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven == 7
</Original>
<Expanded>
7 == 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one == Approx( 9.1f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f == Approx( 9.1000003815 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.double_pi == Approx( 3.1415926535 )
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
3.1415926535 == Approx( 3.1415926535 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello == "hello"
</Original>
<Expanded>
"hello" == "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
"hello" == data.str_hello
</Original>
<Expanded>
"hello" == "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
x == Approx( 1.3 )
</Original>
<Expanded>
1.3 == Approx( 1.3 )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2014-05-20 19:11:43 +02:00
<TestCase name="Equality checks that should fail">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven == 6
</Original>
<Expanded>
7 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven == 8
</Original>
<Expanded>
7 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven == 0
</Original>
<Expanded>
7 == 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one == Approx( 9.11f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f == Approx( 9.1099996567 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one == Approx( 9.0f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f == Approx( 9.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one == Approx( 1 )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f == Approx( 1.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one == Approx( 0 )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.double_pi == Approx( 3.1415 )
</Original>
<Expanded>
3.1415926535 == Approx( 3.1415 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello == "goodbye"
</Original>
<Expanded>
"hello" == "goodbye"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello == "hell"
</Original>
<Expanded>
"hello" == "hell"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello == "hello1"
</Original>
<Expanded>
"hello" == "hello1"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello.size() == 6
</Original>
<Expanded>
5 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
x == Approx( 1.301 )
</Original>
<Expanded>
1.3 == Approx( 1.301 )
</Expanded>
</Expression>
2014-12-30 19:24:31 +01:00
<OverallResult success="true"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Inequality checks that should succeed">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven != 6
</Original>
<Expanded>
7 != 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven != 8
</Original>
<Expanded>
7 != 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one != Approx( 9.11f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f != Approx( 9.1099996567 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one != Approx( 9.0f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f != Approx( 9.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one != Approx( 1 )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f != Approx( 1.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one != Approx( 0 )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f != Approx( 0.0 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.double_pi != Approx( 3.1415 )
</Original>
<Expanded>
3.1415926535 != Approx( 3.1415 )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello != "goodbye"
</Original>
<Expanded>
"hello" != "goodbye"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello != "hell"
</Original>
<Expanded>
"hello" != "hell"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello != "hello1"
</Original>
<Expanded>
"hello" != "hello1"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello.size() != 6
</Original>
<Expanded>
5 != 6
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2014-05-20 19:11:43 +02:00
<TestCase name="Inequality checks that should fail">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven != 7
</Original>
<Expanded>
7 != 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one != Approx( 9.1f )
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f != Approx( 9.1000003815 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.double_pi != Approx( 3.1415926535 )
</Original>
<Expanded>
2013-12-19 19:41:55 +01:00
3.1415926535 != Approx( 3.1415926535 )
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello != "hello"
</Original>
<Expanded>
"hello" != "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello.size() != 5
</Original>
<Expanded>
5 != 5
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Ordering comparison checks that should succeed">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven < 8
</Original>
<Expanded>
7 < 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven > 6
</Original>
<Expanded>
7 > 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven > 0
</Original>
<Expanded>
7 > 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven > -1
</Original>
<Expanded>
7 > -1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven >= 7
</Original>
<Expanded>
7 >= 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven >= 6
</Original>
<Expanded>
7 >= 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven <= 7
</Original>
<Expanded>
7 <= 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven <= 8
</Original>
<Expanded>
7 <= 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one > 9
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f > 9
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one < 10
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f < 10
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one < 9.2
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f < 9.2
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello <= "hello"
</Original>
<Expanded>
"hello" <= "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello >= "hello"
</Original>
<Expanded>
"hello" >= "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello < "hellp"
</Original>
<Expanded>
"hello" < "hellp"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello < "zebra"
</Original>
<Expanded>
"hello" < "zebra"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello > "hellm"
</Original>
<Expanded>
"hello" > "hellm"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello > "a"
</Original>
<Expanded>
"hello" > "a"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Ordering comparison checks that should fail">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven > 7
</Original>
<Expanded>
7 > 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven < 7
</Original>
<Expanded>
7 < 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven > 8
</Original>
<Expanded>
7 > 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven < 6
</Original>
<Expanded>
7 < 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven < 0
</Original>
<Expanded>
7 < 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven < -1
</Original>
<Expanded>
7 < -1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven >= 8
</Original>
<Expanded>
7 >= 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.int_seven <= 6
</Original>
<Expanded>
7 <= 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one < 9
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f < 9
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one > 10
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f > 10
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.float_nine_point_one > 9.2
</Original>
<Expanded>
2014-07-09 19:16:40 +02:00
9.1f > 9.2
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello > "hello"
</Original>
<Expanded>
"hello" > "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello < "hello"
</Original>
<Expanded>
"hello" < "hello"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello > "hellp"
</Original>
<Expanded>
"hello" > "hellp"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello > "z"
</Original>
<Expanded>
"hello" > "z"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello < "hellm"
</Original>
<Expanded>
"hello" < "hellm"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello < "a"
</Original>
<Expanded>
"hello" < "a"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello >= "z"
</Original>
<Expanded>
"hello" >= "z"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
data.str_hello <= "a"
</Original>
<Expanded>
"hello" <= "a"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Comparisons with int literals don't warn when mixing signed/ unsigned">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
ui == 2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
l == 3
</Original>
<Expanded>
3 == 3
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
ul == 4
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
c == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
uc == 6
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1 == i
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2 == ui
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
3 == l
</Original>
<Expanded>
3 == 3
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
4 == ul
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
5 == c
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
6 == uc
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
(std::numeric_limits<unsigned long>::max)() > ul
</Original>
<Expanded>
2015-05-20 19:28:22 +02:00
18446744073709551615 (0x<hex digits>)
>
4
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="comparisons between int variables">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
long_var == unsigned_char_var
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
long_var == unsigned_short_var
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
long_var == unsigned_int_var
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
long_var == unsigned_long_var
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="comparisons between const int variables">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
unsigned_char_var == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
unsigned_short_var == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
unsigned_int_var == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
unsigned_long_var == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Comparisons between unsigned ints and negative signed ints match c++ standard behaviour">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( -1 > 2u )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
-1 > 2u
</Original>
<Expanded>
-1 > 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( 2u < -1 )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2u < -1
</Original>
<Expanded>
2 < -1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( minInt > 2u )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
minInt > 2u
</Original>
<Expanded>
-2147483648 > 2
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Comparisons between ints where one side is computed">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
54 == 6*9
</Original>
<Expanded>
54 == 54
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Pointers can be compared to null">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
p == nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
NULL == nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
p == pNULL
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
NULL == NULL
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
p != nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
0x<hex digits> != nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
cp != nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
0x<hex digits> != nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
cpc != nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
0x<hex digits> != nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
returnsNull() == nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
{null string} == nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
returnsConstNull() == nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
{null string} == nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
nullptr != p
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
nullptr != 0x<hex digits>
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="'Not' checks that should succeed">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
false == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
true == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!false
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_FALSE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!false
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!falseValue
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_FALSE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!falseValue
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!(1 == 2)
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_FALSE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!1 == 2
</Original>
<Expanded>
!(1 == 2)
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="'Not' checks that should fail">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
false != false
</Original>
<Expanded>
false != false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
true != true
</Original>
<Expanded>
true != true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!true
</Original>
<Expanded>
false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_FALSE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!true
</Original>
<Expanded>
!true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!trueValue
</Original>
<Expanded>
false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_FALSE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!trueValue
</Original>
<Expanded>
!true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!(1 == 1)
</Original>
<Expanded>
false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_FALSE" filename="projects/SelfTest/ConditionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!1 == 1
</Original>
<Expanded>
!(1 == 1)
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="When checked exceptions are thrown they can be expected or unexpected">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THROWS_AS" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisThrows()
</Original>
<Expanded>
thisThrows()
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_NOTHROW" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisDoesntThrow()
</Original>
<Expanded>
thisDoesntThrow()
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THROWS" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisThrows()
</Original>
<Expanded>
thisThrows()
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Expected exceptions that don't throw or unexpected exceptions fail the test">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_THROWS_AS" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisThrows()
</Original>
<Expanded>
thisThrows()
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
expected exception
</Exception>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_THROWS_AS" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisDoesntThrow()
</Original>
<Expanded>
thisDoesntThrow()
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_NOTHROW" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisThrows()
</Original>
<Expanded>
thisThrows()
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
expected exception
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="When unchecked exceptions are thrown directly they are always failures">
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
unexpected exception
</Exception>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="An unchecked exception reports the line of the last assertion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1 == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-12 00:40:29 +01:00
<Expression success="false" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
{Unknown expression after the reported line}
</Original>
<Expanded>
{Unknown expression after the reported line}
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
unexpected exception
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="When unchecked exceptions are thrown from sections they are always failures">
2013-09-27 20:01:14 +02:00
<Section name="section name">
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
unexpected exception
</Exception>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="When unchecked exceptions are thrown from functions they are always failures">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisThrows() == 0
</Original>
<Expanded>
thisThrows() == 0
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
expected exception
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
2014-04-12 20:20:46 +02:00
<TestCase name="When unchecked exceptions are thrown during a REQUIRE the test should abort fail">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/ExceptionTests.cpp" >
2014-04-12 20:20:46 +02:00
<Original>
thisThrows() == 0
</Original>
<Expanded>
thisThrows() == 0
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2014-04-12 20:20:46 +02:00
expected exception
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
<TestCase name="When unchecked exceptions are thrown during a CHECK the test should abort and fail">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/ExceptionTests.cpp" >
2014-04-12 20:07:24 +02:00
<Original>
thisThrows() == 0
</Original>
<Expanded>
thisThrows() == 0
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2014-04-12 20:07:24 +02:00
expected exception
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="When unchecked exceptions are thrown, but caught, they do not affect the test">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Unexpected custom exceptions can be translated">
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
custom exception
</Exception>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Custom exceptions can be translated when testing for nothrow">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE_NOTHROW" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
throwCustom()
</Original>
<Expanded>
throwCustom()
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
custom exception - not std
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Custom exceptions can be translated when testing for throwing as something else">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE_THROWS_AS" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
throwCustom()
</Original>
<Expanded>
throwCustom()
</Expanded>
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
custom exception - not std
</Exception>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Unexpected exceptions can be translated">
2014-12-12 00:40:29 +01:00
<Exception filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
3.14
</Exception>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="NotImplemented exception">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THROWS" filename="projects/SelfTest/ExceptionTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
thisFunctionNotImplemented( 7 )
</Original>
<Expanded>
thisFunctionNotImplemented( 7 )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2015-07-13 07:34:41 +02:00
<TestCase name="Exception messages can be tested for">
2015-07-13 16:03:04 +02:00
<Section name="exact match">
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "expected exception"
</Original>
<Expanded>
thisThrows(), "expected exception"
</Expanded>
</Expression>
<OverallResults successes="1" failures="0" expectedFailures="0"/>
</Section>
<Section name="different case">
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "expecteD Exception"
</Original>
<Expanded>
thisThrows(), "expecteD Exception"
</Expanded>
</Expression>
<OverallResults successes="1" failures="0" expectedFailures="0"/>
</Section>
<Section name="wildcarded">
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "expected*"
</Original>
<Expanded>
thisThrows(), "expected*"
</Expanded>
</Expression>
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "*exception"
</Original>
<Expanded>
thisThrows(), "*exception"
</Expanded>
</Expression>
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "*except*"
</Original>
<Expanded>
thisThrows(), "*except*"
</Expanded>
</Expression>
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "*exCept*"
</Original>
<Expanded>
thisThrows(), "*exCept*"
</Expanded>
</Expression>
<OverallResults successes="4" failures="0" expectedFailures="0"/>
</Section>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Mismatching exception messages failing the test">
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "expected exception"
</Original>
<Expanded>
thisThrows(), "expected exception"
</Expanded>
</Expression>
2015-07-13 07:34:41 +02:00
<Expression success="true" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "expected exception"
</Original>
<Expanded>
thisThrows(), "expected exception"
</Expanded>
</Expression>
<Expression success="false" type="REQUIRE_THROWS_WITH" filename="projects/SelfTest/ExceptionTests.cpp" >
<Original>
thisThrows(), "should fail"
</Original>
<Expanded>
expected exception
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Generators over two ranges">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
200 == 200
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
202 == 202
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
204 == 204
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
206 == 206
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
208 == 208
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
210 == 210
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
212 == 212
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
30 == 30
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
40 == 40
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
42 == 42
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( i, 2 ) == i*2
</Original>
<Expanded>
72 == 72
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
multiply( j, 2 ) == j*2
</Original>
<Expanded>
214 == 214
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Generator over a range of pairs">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i->first == i->second-1
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CATCH_REQUIRE" filename="projects/SelfTest/GeneratorTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i->first == i->second-1
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="INFO and WARN do not abort tests">
2013-09-27 20:01:14 +02:00
<Info>
this is a message
</Info>
<Warning>
this is a warning
</Warning>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="SUCCEED counts as a test pass">
2013-09-27 20:01:14 +02:00
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="INFO gets logged on failure">
2013-09-27 20:01:14 +02:00
<Info>
this message should be logged
</Info>
<Info>
so should this
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == 1
</Original>
<Expanded>
2 == 1
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="INFO gets logged on failure, even if captured before successful assertions">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == 2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
<Info>
this message should be logged
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == 1
</Original>
<Expanded>
2 == 1
</Expanded>
</Expression>
<Info>
and this, but later
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == 0
</Original>
<Expanded>
2 == 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == 2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="FAIL aborts the test">
2013-09-27 20:01:14 +02:00
<Failure>
This is a failure
</Failure>
<OverallResult success="false"/>
</TestCase>
2013-12-14 15:34:05 +01:00
<TestCase name="FAIL does not require an argument">
<Failure/>
<OverallResult success="false"/>
</TestCase>
2013-12-15 00:16:03 +01:00
<TestCase name="SUCCESS does not require an argument">
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Output from all sections is reported">
2013-09-27 20:01:14 +02:00
<Section name="one">
<Failure>
Message from section one
</Failure>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="two">
<Failure>
Message from section two
</Failure>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Standard output from all sections is reported">
2013-09-27 20:01:14 +02:00
<Section name="one">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="two">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="SCOPED_INFO is reset for each loop">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
0 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
1 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
2 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
3 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
4 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
5 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
6 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
7 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
8 < 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
9 < 10
</Expanded>
</Expression>
<Info>
current counter 10
</Info>
<Info>
i := 10
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i < 10
</Original>
<Expanded>
10 < 10
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="The NO_FAIL macro reports a failure but does not fail the test">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_NOFAIL" filename="projects/SelfTest/MessageTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
1 == 2
</Original>
<Expanded>
1 == 2
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
<TestCase name="just info">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
<TestCase name="just failure">
<Failure>
Previous info should not be seen
</Failure>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="sends information to INFO">
<Info>
hi
</Info>
<Info>
i := 7
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MessageTests.cpp" >
2013-11-19 08:21:03 +01:00
<Original>
false
</Original>
<Expanded>
false
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2014-05-23 19:55:05 +02:00
<TestCase name="Pointers can be converted to strings">
<Warning>
actual address of p: 0x<hex digits>
</Warning>
<Warning>
toString(p): 0x<hex digits>
</Warning>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2014-05-23 19:55:05 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="random SECTION tests">
2013-09-27 20:01:14 +02:00
<Section name="s1" description="doesn't equal">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a != b
</Original>
<Expanded>
1 != 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
b != a
</Original>
<Expanded>
2 != 1
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="s2" description="not equal">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a != b
</Original>
<Expanded>
1 != 2
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="nested SECTION tests">
2013-09-27 20:01:14 +02:00
<Section name="s1" description="doesn't equal">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a != b
</Original>
<Expanded>
1 != 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
b != a
</Original>
<Expanded>
2 != 1
</Expanded>
</Expression>
<Section name="s2" description="not equal">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a != b
</Original>
<Expanded>
1 != 2
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="more nested SECTION tests">
2013-09-27 20:01:14 +02:00
<Section name="s1" description="doesn't equal">
<Section name="s2" description="equal">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == b
</Original>
<Expanded>
1 == 2
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="even more nested SECTION tests">
2013-09-27 20:01:14 +02:00
<Section name="c">
<Section name="d (leaf)">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="c">
<Section name="e (leaf)">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="f (leaf)">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="looped SECTION tests">
2013-09-27 20:01:14 +02:00
<Section name="s1" description="b is currently: 0">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
b > a
</Original>
<Expanded>
0 > 1
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="looped tests">
2013-09-27 20:01:14 +02:00
<Info>
Testing if fib[0] (1) is even
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
1 == 0
</Expanded>
</Expression>
<Info>
Testing if fib[1] (1) is even
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
1 == 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
<Info>
Testing if fib[3] (3) is even
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
1 == 0
</Expanded>
</Expression>
<Info>
Testing if fib[4] (5) is even
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
1 == 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
<Info>
Testing if fib[6] (13) is even
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
1 == 0
</Expanded>
</Expression>
<Info>
Testing if fib[7] (21) is even
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
( fib[i] % 2 ) == 0
</Original>
<Expanded>
1 == 0
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Sends stuff to stdout and stderr">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="null strings">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
makeString( false ) != static_cast<char*>(nullptr)
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
"valid string" != {null string}
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
makeString( true ) == static_cast<char*>(nullptr)
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
{null string} == {null string}
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="checkedIf">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECKED_IF" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
flag
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCheckedIf( true )
</Original>
<Expanded>
true
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="checkedIf, failing">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECKED_IF" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
flag
</Original>
<Expanded>
false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCheckedIf( false )
</Original>
<Expanded>
false
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="checkedElse">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECKED_ELSE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
flag
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCheckedElse( true )
</Original>
<Expanded>
true
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="checkedElse, failing">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECKED_ELSE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
flag
</Original>
<Expanded>
false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCheckedElse( false )
</Original>
<Expanded>
false
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="xmlentitycheck">
2013-09-27 20:01:14 +02:00
<Section name="embedded xml" description="<test>it should be possible to embed xml characters, such as <, " or &, or even whole <xml>documents</xml> within an attribute</test>">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="encoded chars" description="these should all be encoded: &&&"""<<<&"<<&"">
2014-07-03 09:09:57 +02:00
<OverallResults successes="0" failures="1" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="send a single char to INFO">
2013-09-27 20:01:14 +02:00
<Info>
3
</Info>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
false
</Original>
<Expanded>
false
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="atomic if">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
x == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="String matchers">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() Contains( "string" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" contains: "string"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() Contains( "abc" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" contains: "abc"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() StartsWith( "this" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" starts with: "this"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() EndsWith( "substring" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" ends with: "substring"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Contains string matcher">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() Contains( "not there" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" contains: "not there"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="StartsWith string matcher">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() StartsWith( "string" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" starts with: "string"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="EndsWith string matcher">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() EndsWith( "this" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" ends with: "this"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Equals string matcher">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() Equals( "something else" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" equals: "something else"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Equals string matcher, with NULL">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
"" Equals(nullptr)
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
"" equals: ""
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="AllOf matcher">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) )
</Original>
<Expanded>
"this string contains 'abc' as a substring" ( contains: "string" and contains: "abc" )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="AnyOf matcher">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() AnyOf( Catch::Contains( "string" ), Catch::Contains( "not there" ) )
</Original>
<Expanded>
"this string contains 'abc' as a substring" ( contains: "string" or contains: "not there" )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() AnyOf( Catch::Contains( "not there" ), Catch::Contains( "string" ) )
</Original>
<Expanded>
"this string contains 'abc' as a substring" ( contains: "not there" or contains: "string" )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Equals">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testStringForMatching() Equals( "this string contains 'abc' as a substring" )
</Original>
<Expanded>
"this string contains 'abc' as a substring" equals: "this string contains 'abc' as a substring"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Factorials are computed">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Factorial(0) == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Factorial(1) == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Factorial(2) == 2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Factorial(3) == 6
</Original>
<Expanded>
6 == 6
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Factorial(10) == 3628800
</Original>
<Expanded>
2015-05-20 19:28:22 +02:00
3628800 (0x<hex digits>) == 3628800 (0x<hex digits>)
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="An empty test with no assertions">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
<TestCase name="Nice descriptive name">
<Warning>
This one ran
</Warning>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
<TestCase name="first tag">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
<TestCase name="second tag">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
<TestCase name="vectors can be sized and resized">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 5
</Original>
<Expanded>
5 >= 5
</Expanded>
</Expression>
<Section name="resizing bigger changes size and capacity">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 10
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 10
</Original>
<Expanded>
10 >= 10
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 5
</Original>
<Expanded>
5 >= 5
</Expanded>
</Expression>
<Section name="resizing smaller changes size but not capacity">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 5
</Original>
<Expanded>
5 >= 5
</Expanded>
</Expression>
<Section name="We can use the 'swap trick' to reset the capacity">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 5
</Original>
<Expanded>
5 >= 5
</Expanded>
</Expression>
<Section name="reserving bigger changes capacity but not size">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 10
</Original>
<Expanded>
10 >= 10
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 5
</Original>
<Expanded>
5 >= 5
</Expanded>
</Expression>
<Section name="reserving smaller does not change size or capacity">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/MiscTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 5
</Original>
<Expanded>
5 >= 5
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="A couple of nested sections followed by a failure">
2013-09-27 20:01:14 +02:00
<Section name="Outer">
<Section name="Inner">
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Failure>
to infinity and beyond
</Failure>
<OverallResult success="false"/>
</TestCase>
2014-04-15 19:44:37 +02:00
<TestCase name="not allowed">
<OverallResult success="true"/>
</TestCase>
2014-04-23 08:07:27 +02:00
<TestCase name="Tabs and newlines show in output">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2014-04-23 08:07:27 +02:00
<Original>
s1 == s2
</Original>
<Expanded>
"if ($b == 10) {
$a = 20;
}"
==
"if ($b == 10) {
$a = 20;
}
"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2014-08-20 09:08:13 +02:00
<TestCase name="toString on const wchar_t const pointer returns the string contents">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2014-08-20 09:08:13 +02:00
<Original>
result == "\"wide load\""
</Original>
<Expanded>
""wide load"" == ""wide load""
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString on const wchar_t pointer returns the string contents">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2014-08-20 09:08:13 +02:00
<Original>
result == "\"wide load\""
</Original>
<Expanded>
""wide load"" == ""wide load""
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString on wchar_t const pointer returns the string contents">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2014-08-20 09:08:13 +02:00
<Original>
result == "\"wide load\""
</Original>
<Expanded>
""wide load"" == ""wide load""
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString on wchar_t returns the string contents">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/MiscTests.cpp" >
2014-08-20 09:08:13 +02:00
<Original>
result == "\"wide load\""
</Original>
<Expanded>
""wide load"" == ""wide load""
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-09-27 20:01:14 +02:00
<TestCase name="Process can be configured on command line">
<Section name="default - no arguments">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.shouldDebugBreak == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.abortAfter == -1
</Original>
<Expanded>
-1 == -1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.noThrow == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.reporterName.empty()
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="test lists">
<Section name="1 test" description="Specify one test case using">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-16 19:31:15 +02:00
cfg.testSpec().matches( fakeTestCase( "notIncluded" ) ) == false
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-16 19:31:15 +02:00
cfg.testSpec().matches( fakeTestCase( "test1" ) )
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="test lists">
<Section name="Specify one test case exclusion using exclude:">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-16 19:31:15 +02:00
cfg.testSpec().matches( fakeTestCase( "test1" ) ) == false
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-16 19:31:15 +02:00
cfg.testSpec().matches( fakeTestCase( "alwaysIncluded" ) )
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="test lists">
<Section name="Specify one test case exclusion using ~">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-16 19:31:15 +02:00
cfg.testSpec().matches( fakeTestCase( "test1" ) ) == false
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-16 19:31:15 +02:00
cfg.testSpec().matches( fakeTestCase( "alwaysIncluded" ) )
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="reporter">
<Section name="-r/console">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.reporterName == "console"
</Original>
<Expanded>
"console" == "console"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="reporter">
<Section name="-r/xml">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.reporterName == "xml"
</Original>
<Expanded>
"xml" == "xml"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="reporter">
<Section name="--reporter/junit">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.reporterName == "junit"
</Original>
<Expanded>
"junit" == "junit"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="debugger">
<Section name="-b">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.shouldDebugBreak == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="debugger">
<Section name="--break">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.shouldDebugBreak
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="abort">
<Section name="-a aborts after first failure">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.abortAfter == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="abort">
<Section name="-x 2 aborts after two failures">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.abortAfter == 2
</Original>
<Expanded>
2 == 2
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="abort">
<Section name="-x must be greater than zero">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THAT" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfigAndReturnError( argv, config ) Contains( "greater than zero" )
</Original>
<Expanded>
"Value after -x or --abortAfter must be greater than zero
2014-04-12 20:05:03 +02:00
- while parsing: (-x, --abortx <no. failures>)" contains: "greater than zero"
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="abort">
<Section name="-x must be numeric">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_THAT" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfigAndReturnError( argv, config ) Contains( "-x" )
</Original>
<Expanded>
"Unable to convert oops to destination type
2014-04-12 20:05:03 +02:00
- while parsing: (-x, --abortx <no. failures>)" contains: "-x"
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="nothrow">
<Section name="-e">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.noThrow == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="nothrow">
<Section name="--nothrow">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.noThrow == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="output filename">
<Section name="-o filename">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.outputFilename == "filename.ext"
</Original>
<Expanded>
"filename.ext" == "filename.ext"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="output filename">
<Section name="--out">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.outputFilename == "filename.ext"
</Original>
<Expanded>
"filename.ext" == "filename.ext"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="combinations">
<Section name="Single character flags can be combined">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.abortAfter == 1
</Original>
<Expanded>
1 == 1
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.shouldDebugBreak
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
config.noThrow == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2015-03-04 09:22:32 +01:00
<Section name="force-colour">
<Section name="--force-colour">
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
<Original>
config.forceColour
</Original>
<Expanded>
true
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<Section name="force-colour">
<Section name="without --force-colour">
<Expression success="true" type="CHECK_NOTHROW" filename="projects/SelfTest/TestMain.cpp" >
<Original>
parseIntoConfig( argv, config )
</Original>
<Expanded>
parseIntoConfig( argv, config )
</Expanded>
</Expression>
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
<Original>
!config.forceColour
</Original>
<Expanded>
true
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
2013-09-27 20:01:14 +02:00
<OverallResult success="true"/>
</TestCase>
<TestCase name="Long strings can be wrapped">
<Section name="plain string">
<Section name="No wrapping">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString
</Original>
<Expanded>
"one two three four"
==
"one two three four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString
</Original>
<Expanded>
"one two three four"
==
"one two three four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="plain string">
<Section name="Wrapped once">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 17 ) ).toString() == "one two three\nfour"
</Original>
<Expanded>
"one two three
four"
==
"one two three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 16 ) ).toString() == "one two three\nfour"
</Original>
<Expanded>
"one two three
four"
==
"one two three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 14 ) ).toString() == "one two three\nfour"
</Original>
<Expanded>
"one two three
four"
==
"one two three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 13 ) ).toString() == "one two three\nfour"
</Original>
<Expanded>
"one two three
four"
==
"one two three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 12 ) ).toString() == "one two\nthree four"
</Original>
<Expanded>
"one two
three four"
==
"one two
three four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="plain string">
<Section name="Wrapped twice">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 9 ) ).toString() == "one two\nthree\nfour"
</Original>
<Expanded>
"one two
three
four"
==
"one two
three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 8 ) ).toString() == "one two\nthree\nfour"
</Original>
<Expanded>
"one two
three
four"
==
"one two
three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 7 ) ).toString() == "one two\nthree\nfour"
</Original>
<Expanded>
"one two
three
four"
==
"one two
three
four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="plain string">
<Section name="Wrapped three times">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 6 ) ).toString() == "one\ntwo\nthree\nfour"
</Original>
<Expanded>
"one
two
three
four"
==
"one
two
three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 5 ) ).toString() == "one\ntwo\nthree\nfour"
</Original>
<Expanded>
"one
two
three
four"
==
"one
two
three
four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="plain string">
<Section name="Short wrap">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "abcdef", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndef"
</Original>
<Expanded>
"abc-
def"
==
"abc-
def"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "abcdefg", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndefg"
</Original>
<Expanded>
"abc-
defg"
==
"abc-
defg"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "abcdefgh", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndef-\ngh"
</Original>
<Expanded>
"abc-
def-
gh"
==
"abc-
def-
gh"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 4 ) ).toString() == "one\ntwo\nthr-\nee\nfour"
</Original>
<Expanded>
"one
two
thr-
ee
four"
==
"one
two
thr-
ee
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 3 ) ).toString() == "one\ntwo\nth-\nree\nfo-\nur"
</Original>
<Expanded>
"one
two
th-
ree
fo-
ur"
==
"one
two
th-
ree
fo-
ur"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="plain string">
<Section name="As container">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
text.size() == 4
</Original>
<Expanded>
4 == 4
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
text[0] == "one"
</Original>
<Expanded>
"one" == "one"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
text[1] == "two"
</Original>
<Expanded>
"two" == "two"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
text[2] == "three"
</Original>
<Expanded>
"three" == "three"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
text[3] == "four"
</Original>
<Expanded>
"four" == "four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="plain string">
<Section name="Indent first line differently">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
text.toString() == " one two\n three\n four"
</Original>
<Expanded>
" one two
three
four"
==
" one two
three
four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="With newlines">
<Section name="No wrapping">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString
</Original>
<Expanded>
"one two
three four"
==
"one two
three four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString
</Original>
<Expanded>
"one two
three four"
==
"one two
three four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 10 ) ).toString() == testString
</Original>
<Expanded>
"one two
three four"
==
"one two
three four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="With newlines">
<Section name="Trailing newline">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "abcdef\n", TextAttributes().setWidth( 10 ) ).toString() == "abcdef\n"
</Original>
<Expanded>
"abcdef
"
==
"abcdef
"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "abcdef", TextAttributes().setWidth( 6 ) ).toString() == "abcdef"
</Original>
<Expanded>
"abcdef" == "abcdef"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "abcdef\n", TextAttributes().setWidth( 6 ) ).toString() == "abcdef\n"
</Original>
<Expanded>
"abcdef
"
==
"abcdef
"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="With newlines">
<Section name="Wrapped once">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 9 ) ).toString() == "one two\nthree\nfour"
</Original>
<Expanded>
"one two
three
four"
==
"one two
three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 8 ) ).toString() == "one two\nthree\nfour"
</Original>
<Expanded>
"one two
three
four"
==
"one two
three
four"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 7 ) ).toString() == "one two\nthree\nfour"
</Original>
<Expanded>
"one two
three
four"
==
"one two
three
four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="With newlines">
<Section name="Wrapped twice">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 6 ) ).toString() == "one\ntwo\nthree\nfour"
</Original>
<Expanded>
"one
two
three
four"
==
"one
two
three
four"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="With tabs">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( testString, TextAttributes().setWidth( 15 ) ).toString() == "one two three\n four\n five\n six"
</Original>
<Expanded>
"one two three
four
five
six"
==
"one two three
four
five
six"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2014-12-21 01:20:09 +01:00
<TestCase name="replaceInPlace">
<Section name="replace single char">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
replaceInPlace( letters, "b", "z" )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
letters == "azcdefcg"
</Original>
<Expanded>
"azcdefcg" == "azcdefcg"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<Section name="replace two chars">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
replaceInPlace( letters, "c", "z" )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
letters == "abzdefzg"
</Original>
<Expanded>
"abzdefzg" == "abzdefzg"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<Section name="replace first char">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
replaceInPlace( letters, "a", "z" )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
letters == "zbcdefcg"
</Original>
<Expanded>
"zbcdefcg" == "zbcdefcg"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<Section name="replace last char">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
replaceInPlace( letters, "g", "z" )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
letters == "abcdefcz"
</Original>
<Expanded>
"abcdefcz" == "abcdefcz"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<Section name="replace all chars">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
replaceInPlace( letters, letters, "replaced" )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
letters == "replaced"
</Original>
<Expanded>
"replaced" == "replaced"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<Section name="replace no chars">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
!replaceInPlace( letters, "x", "z" )
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-21 01:20:09 +01:00
<Original>
letters == letters
</Original>
<Expanded>
"abcdefcg" == "abcdefcg"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
2014-12-30 19:24:31 +01:00
<Section name="escape '">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-30 19:24:31 +01:00
<Original>
replaceInPlace( s, "'", "|'" )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2014-12-30 19:24:31 +01:00
<Original>
s == "didn|'t"
</Original>
<Expanded>
"didn|'t" == "didn|'t"
</Expanded>
</Expression>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
2014-12-21 01:20:09 +01:00
<OverallResult success="true"/>
</TestCase>
2013-09-27 20:01:14 +02:00
<TestCase name="Strings can be rendered with colour">
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
<TestCase name="Text can be formatted using the Text class">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "hi there" ).toString() == "hi there"
</Original>
<Expanded>
"hi there" == "hi there"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TestMain.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
Text( "hi there", narrow ).toString() == "hi\nthere"
</Original>
<Expanded>
"hi
there"
==
"hi
there"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-10-23 16:35:07 +02:00
<TestCase name="Long text is truncted">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/TestMain.cpp" >
2013-10-23 16:35:07 +02:00
<Original>
t.toString() EndsWith( "... message truncated due to excessive size" )
</Original>
<Expanded>
"******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
... message truncated due to excessive size" ends with: "... message truncated due to excessive size"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Parsing a std::pair">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
(std::pair<int, int>( 1, 2 )) == aNicePair
</Original>
<Expanded>
std::pair( 1, 2 ) == std::pair( 1, 2 )
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2014-12-22 21:17:50 +01:00
<TestCase name="Where there is more to the expression after the RHS">
2013-09-27 20:01:14 +02:00
<Warning>
Uncomment the code in this test to check that it gives a sensible compiler error
</Warning>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2014-12-22 21:17:50 +01:00
<TestCase name="Where the LHS is not a simple value">
2013-09-27 20:01:14 +02:00
<Warning>
Uncomment the code in this test to check that it gives a sensible compiler error
</Warning>
2014-12-30 19:24:31 +01:00
<OverallResult success="false"/>
2013-09-27 20:01:14 +02:00
</TestCase>
2014-12-21 01:20:09 +01:00
<TestCase name="A failing expression with a non streamable type is still captured">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
&o1 == &o2
</Original>
<Expanded>
0x<hex digits> == 0x<hex digits>
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="false" type="CHECK" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
o1 == o2
</Original>
<Expanded>
{?} == {?}
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2014-12-21 01:20:09 +01:00
<TestCase name="string literals of different sizes can be compared">
2014-12-30 19:25:27 +01:00
<Expression success="false" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
std::string( "first" ) == "second"
</Original>
<Expanded>
"first" == "second"
</Expanded>
</Expression>
<OverallResult success="false"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="An expression with side-effects should only be evaluated once">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i++ == 7
</Original>
<Expanded>
7 == 7
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
i++ == 8
</Original>
<Expanded>
8 == 8
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Operators at different namespace levels not hijacked by Koenig lookup">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
0x<hex digits> == o
</Original>
<Expanded>
2015-05-20 19:28:22 +02:00
3221225472 (0x<hex digits>) == {?}
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Demonstrate that a non-const == is not used">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
t == 1u
</Original>
<Expanded>
{?} == 1
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Test enum bit values">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
0x<hex digits> == bit30and31
</Original>
<Expanded>
2015-05-20 19:28:22 +02:00
3221225472 (0x<hex digits>) == 3221225472
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="boolean member">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2015-07-01 08:33:27 +02:00
obj.prop != nullptr
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
0x<hex digits> != nullptr
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="(unimplemented) static bools can be evaluated">
2013-09-27 20:01:14 +02:00
<Section name="compare to true">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
is_true<true>::value == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
true == is_true<true>::value
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="compare to false">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
is_true<false>::value == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
false == is_true<false>::value
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="negation">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!is_true<false>::value
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="double negation">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!!is_true<true>::value
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<Section name="direct">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
is_true<true>::value
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE_FALSE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!is_true<false>::value
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2013-11-19 08:21:03 +01:00
<TestCase name="Objects that evaluated in boolean contexts can be checked">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
True
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!False
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!False
</Original>
<Expanded>
!false
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Assertions then sections">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-28 19:53:01 +02:00
Catch::alwaysTrue()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
<Section name="A section">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-28 19:53:01 +02:00
Catch::alwaysTrue()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
<Section name="Another section">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-28 19:53:01 +02:00
Catch::alwaysTrue()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-28 19:53:01 +02:00
Catch::alwaysTrue()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
<Section name="A section">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-28 19:53:01 +02:00
Catch::alwaysTrue()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
<Section name="Another other section">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-05-28 19:53:01 +02:00
Catch::alwaysTrue()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
<TestCase name="non streamable - with conv. op">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
s == "7"
</Original>
<Expanded>
"7" == "7"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Comparing function pointers">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
a == &foo
</Original>
<Expanded>
2014-01-07 18:25:27 +01:00
0x<hex digits> == 0x<hex digits>
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Comparing member function pointers">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/TrickyTests.cpp" >
2014-01-07 18:25:27 +01:00
<Original>
m == &S::f
</Original>
<Expanded>
0x<hex digits>
==
0x<hex digits>
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="pointer to class">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
p == 0
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
NULL == 0
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2014-04-23 19:19:19 +02:00
<TestCase name="null_ptr">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/TrickyTests.cpp" >
2014-04-23 19:19:19 +02:00
<Original>
ptr.get() == nullptr
</Original>
<Expanded>
2015-07-01 08:33:27 +02:00
NULL == nullptr
2014-04-23 19:19:19 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2013-09-27 20:01:14 +02:00
<TestCase name="X/level/0/a">
<OverallResult success="true"/>
</TestCase>
<TestCase name="X/level/0/b">
<OverallResult success="true"/>
</TestCase>
<TestCase name="X/level/1/a">
<OverallResult success="true"/>
</TestCase>
<TestCase name="X/level/1/b">
<OverallResult success="true"/>
</TestCase>
2014-09-03 20:22:47 +02:00
<TestCase name="toString( has_toString )">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringWhich.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( item ) == "toString( has_toString )"
</Original>
<Expanded>
"toString( has_toString )"
==
"toString( has_toString )"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString( has_maker )">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringWhich.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( item ) == "StringMaker<has_maker>"
</Original>
<Expanded>
"StringMaker<has_maker>"
==
"StringMaker<has_maker>"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString( has_maker_and_toString )">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringWhich.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( item ) == "toString( has_maker_and_toString )"
</Original>
<Expanded>
"toString( has_maker_and_toString )"
==
"toString( has_maker_and_toString )"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString( vectors<has_toString )">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringWhich.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( v ) == "{ {?} }"
</Original>
<Expanded>
"{ {?} }" == "{ {?} }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString( vectors<has_maker )">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringWhich.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( v ) == "{ StringMaker<has_maker> }"
</Original>
<Expanded>
"{ StringMaker<has_maker> }"
==
"{ StringMaker<has_maker> }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="toString( vectors<has_maker_and_toString )">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringWhich.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( v ) == "{ StringMaker<has_maker_and_toString> }"
</Original>
<Expanded>
"{ StringMaker<has_maker_and_toString> }"
==
"{ StringMaker<has_maker_and_toString> }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="std::pair<int,std::string> -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringPair.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( value ) == "{ 34, \"xyzzy\" }"
</Original>
<Expanded>
"{ 34, "xyzzy" }" == "{ 34, "xyzzy" }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="std::pair<int,const std::string> -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringPair.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(value) == "{ 34, \"xyzzy\" }"
</Original>
<Expanded>
"{ 34, "xyzzy" }" == "{ 34, "xyzzy" }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="std::vector<std::pair<std::string,int> > -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringPair.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( pr ) == "{ { \"green\", 55 } }"
</Original>
<Expanded>
"{ { "green", 55 } }"
==
"{ { "green", 55 } }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="pair<pair<int,const char *,pair<std::string,int> > -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringPair.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }"
</Original>
<Expanded>
"{ { 42, "Arthur" }, { "Ford", 24 } }"
==
"{ { 42, "Arthur" }, { "Ford", 24 } }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="vector<int> -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ }"
</Original>
<Expanded>
"{ }" == "{ }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ 42 }"
</Original>
<Expanded>
"{ 42 }" == "{ 42 }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
2015-05-20 19:28:22 +02:00
Catch::toString(vv) == "{ 42, 250 }"
2014-09-03 20:22:47 +02:00
</Original>
<Expanded>
2015-05-20 19:28:22 +02:00
"{ 42, 250 }" == "{ 42, 250 }"
2014-09-03 20:22:47 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="vector<string> -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ }"
</Original>
<Expanded>
"{ }" == "{ }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ \"hello\" }"
</Original>
<Expanded>
"{ "hello" }" == "{ "hello" }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ \"hello\", \"world\" }"
</Original>
<Expanded>
"{ "hello", "world" }"
==
"{ "hello", "world" }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="vector<int,allocator> -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ }"
</Original>
<Expanded>
"{ }" == "{ }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(vv) == "{ 42 }"
</Original>
<Expanded>
"{ 42 }" == "{ 42 }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
2015-05-20 19:28:22 +02:00
Catch::toString(vv) == "{ 42, 250 }"
2014-09-03 20:22:47 +02:00
</Original>
<Expanded>
2015-05-20 19:28:22 +02:00
"{ 42, 250 }" == "{ 42, 250 }"
2014-09-03 20:22:47 +02:00
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="vec<vec<string,alloc>> -> toString">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(v) == "{ }"
</Original>
<Expanded>
"{ }" == "{ }"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/ToStringVector.cpp" >
2014-09-03 20:22:47 +02:00
<Original>
Catch::toString(v) == "{ { \"hello\" }, { \"world\" } }"
</Original>
<Expanded>
"{ { "hello" }, { "world" } }"
==
"{ { "hello" }, { "world" } }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2014-05-16 19:31:15 +02:00
<TestCase name="Parse test names and tags">
<Section name="Empty test spec should have no filters">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Test spec from empty string should have no filters">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches(tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Test spec from just a comma should have no filters">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Test spec from name should have one filter">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Test spec from quoted name should have one filter">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Test spec from name should have one filter">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Wildcard at the start">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
parseTestSpec( "*a" ).matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="6" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Wildcard at the end">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
parseTestSpec( "a*" ).matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="6" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Wildcard at both ends">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
parseTestSpec( "*a*" ).matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="6" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
2014-05-19 19:21:01 +02:00
<Section name="Redundant wildcard at the start">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-19 19:21:01 +02:00
</Section>
<Section name="Redundant wildcard at the end">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-19 19:21:01 +02:00
</Section>
<Section name="Redundant wildcard at both ends">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2014-05-19 19:21:01 +02:00
</Section>
<Section name="Wildcard at both ends, redundant at start">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-19 19:21:01 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-19 19:21:01 +02:00
</Section>
2014-05-16 19:31:15 +02:00
<Section name="Just wildcard">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Single tag">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Single tag, two matches">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Two tags">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
2014-05-20 19:28:48 +02:00
<Section name="Two tags, spare separated">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-20 19:28:48 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-20 19:28:48 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-20 19:28:48 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-20 19:28:48 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-20 19:28:48 +02:00
</Section>
2014-05-16 19:31:15 +02:00
<Section name="Wildcarded name and tag">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="Single tag exclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="One tag exclusion and one tag inclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="One tag exclusion and one wldcarded name inclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="One tag exclusion, using exclude:, and one wldcarded name inclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="name exclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="wildcarded name exclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="wildcarded name exclusion with tag inclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="wildcarded name exclusion, using exclude:, with tag inclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="two wildcarded names">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="empty tag">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="empty quoted name">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<Section name="quoted string followed by tag exclusion">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.hasFilters() == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcA ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcB ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcC ) == false
</Original>
<Expanded>
false == false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/CmdLineTests.cpp" >
2014-05-16 19:31:15 +02:00
<Original>
spec.matches( tcD ) == true
</Original>
<Expanded>
true == true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2014-05-16 19:31:15 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2014-12-30 19:47:01 +01:00
<TestCase name="tuple<>">
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ }" == Catch::toString(type{})
</Original>
<Expanded>
"{ }" == "{ }"
</Expanded>
</Expression>
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ }" == Catch::toString(value)
</Original>
<Expanded>
"{ }" == "{ }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="tuple<int>">
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ 0 }" == Catch::toString(type{0})
</Original>
<Expanded>
"{ 0 }" == "{ 0 }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="tuple<float,int>">
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"1.2f" == Catch::toString(float(1.2))
</Original>
<Expanded>
"1.2f" == "1.2f"
</Expanded>
</Expression>
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ 1.2f, 0 }" == Catch::toString(type{1.2,0})
</Original>
<Expanded>
"{ 1.2f, 0 }" == "{ 1.2f, 0 }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="tuple<string,string>">
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ \"hello\", \"world\" }" == Catch::toString(type{"hello","world"})
</Original>
<Expanded>
"{ "hello", "world" }"
==
"{ "hello", "world" }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="tuple<tuple<int>,tuple<>,float>">
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ { 42 }, { }, 1.2f }" == Catch::toString(value)
</Original>
<Expanded>
"{ { 42 }, { }, 1.2f }"
==
"{ { 42 }, { }, 1.2f }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="tuple<nullptr,int,const char *>">
<Expression success="true" type="CHECK" filename="projects/SelfTest/ToStringTuple.cpp" >
<Original>
"{ nullptr, 42, \"Catch me\" }" == Catch::toString(value)
</Original>
<Expanded>
"{ nullptr, 42, "Catch me" }"
==
"{ nullptr, 42, "Catch me" }"
</Expanded>
</Expression>
<OverallResult success="true"/>
</TestCase>
2014-06-30 08:34:27 +02:00
<TestCase name="Tag alias can be registered against tag patterns">
<Section name="The same tag alias can only be registered once">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
what Contains( "[@zzz]" )
</Original>
<Expanded>
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "[@zzz]"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
what Contains( "file" )
</Original>
<Expanded>
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "file"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
what Contains( "2" )
</Original>
<Expanded>
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "2"
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THAT" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
what Contains( "10" )
</Original>
<Expanded>
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "10"
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-06-30 08:34:27 +02:00
</Section>
<Section name="Tag aliases must be of the form [@name]">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THROWS" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) )
</Original>
<Expanded>
registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THROWS" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) )
</Original>
<Expanded>
registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THROWS" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) )
</Original>
<Expanded>
registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) )
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_THROWS" filename="projects/SelfTest/TagAliasTests.cpp" >
2014-06-30 08:34:27 +02:00
<Original>
registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) )
</Original>
<Expanded>
registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) )
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2014-06-30 08:34:27 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2013-09-27 20:01:14 +02:00
<TestCase name="Anonymous test case 1">
<OverallResult success="true"/>
</TestCase>
<TestCase name="Test case with one argument">
<OverallResult success="true"/>
</TestCase>
<TestCase name="Variadic macros">
<Section name="Section with one argument">
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Scenario: Do that thing with the thing">
2013-12-10 09:20:46 +01:00
<Section name="Given: This stuff exists">
<Section name="When: I do this">
<Section name="Then: it should do this">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
itDoesThis()
</Original>
<Expanded>
true
</Expanded>
</Expression>
2013-12-10 09:20:46 +01:00
<Section name="And: do that">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
itDoesThat()
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Scenario: Vector resizing affects size and capacity">
2013-12-10 09:20:46 +01:00
<Section name="Given: an empty vector">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
2013-12-10 09:20:46 +01:00
<Section name="When: it is made larger">
<Section name="Then: the size and capacity go up">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 10
</Original>
<Expanded>
10 == 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 10
</Original>
<Expanded>
10 >= 10
</Expanded>
</Expression>
<Section name="And when: it is made smaller again">
2013-12-10 09:20:46 +01:00
<Section name="Then: the size goes down but the capacity stays the same">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 5
</Original>
<Expanded>
5 == 5
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 10
</Original>
<Expanded>
10 >= 10
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="5" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2013-12-10 09:20:46 +01:00
<Section name="Given: an empty vector">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
2013-12-10 09:20:46 +01:00
<Section name="When: we reserve more space">
<Section name="Then: The capacity is increased but the size remains the same">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.capacity() >= 10
</Original>
<Expanded>
10 >= 10
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
v.size() == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="3" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
<TestCase name="Scenario: This is a really long scenario name to see how the list command deals with wrapping">
2013-12-10 09:20:46 +01:00
<Section name="Given: A section name that is so long that it cannot fit in a single console width">
<Section name="When: The test headers are printed as part of the normal running of the scenario">
<Section name="Then: The, deliberately very long and overly verbose (you see what I did there?) section names must wrap, along with an indent">
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-07-03 09:09:57 +02:00
<OverallResults successes="1" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2014-08-20 09:08:13 +02:00
<TestCase name="Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or methods">
<Section name="Given: No operations precede me">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2014-08-20 09:08:13 +02:00
<Original>
before == 0
</Original>
<Expanded>
0 == 0
</Expanded>
</Expression>
<Section name="When: We get the count">
<Section name="Then: Subsequently values are higher">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="REQUIRE" filename="projects/SelfTest/BDDTests.cpp" >
2014-08-20 09:08:13 +02:00
<Original>
after > before
</Original>
<Expanded>
1 > 0
</Expanded>
</Expression>
<OverallResults successes="1" failures="0" expectedFailures="0"/>
</Section>
<OverallResults successes="1" failures="0" expectedFailures="0"/>
</Section>
<OverallResults successes="2" failures="0" expectedFailures="0"/>
</Section>
<OverallResult success="true"/>
</TestCase>
2013-09-27 20:01:14 +02:00
<TestCase name="section tracking">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
<Section name="test case with no sections">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCaseTracker.isCompleted()
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="2" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
<Section name="test case with one section">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-04-21 20:02:38 +02:00
testCaseTracker.enterSection( section1Name )
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2014-04-21 20:02:38 +02:00
true
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-04-21 20:02:38 +02:00
testCaseTracker.isCompleted()
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-04-21 20:02:38 +02:00
!testCaseTracker.enterSection( section1Name )
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2014-04-21 20:02:38 +02:00
!false
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
<Section name="test case with two consecutive sections">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCaseTracker.enterSection( section1Name )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.enterSection( section2Name )
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.enterSection( section1Name )
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCaseTracker.enterSection( section2Name )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCaseTracker.isCompleted()
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="6" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
<Section name="test case with one section within another">
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCaseTracker.enterSection( section1Name )
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
2014-04-21 20:02:38 +02:00
testCaseTracker.enterSection( section2Name )
2013-09-27 20:01:14 +02:00
</Original>
<Expanded>
2014-04-21 20:02:38 +02:00
true
2013-09-27 20:01:14 +02:00
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK_FALSE" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
!testCaseTracker.isCompleted()
</Original>
<Expanded>
!false
</Expanded>
</Expression>
2014-12-30 19:25:27 +01:00
<Expression success="true" type="CHECK" filename="projects/SelfTest/SectionTrackerTests.cpp" >
2013-09-27 20:01:14 +02:00
<Original>
testCaseTracker.isCompleted()
</Original>
<Expanded>
true
</Expanded>
</Expression>
2014-07-03 09:09:57 +02:00
<OverallResults successes="4" failures="0" expectedFailures="0"/>
2013-09-27 20:01:14 +02:00
</Section>
<OverallResult success="true"/>
</TestCase>
2015-07-13 16:03:04 +02:00
<OverallResults successes="681" failures="100" expectedFailures="13"/>
2013-09-27 20:01:14 +02:00
</Group>
2015-07-13 16:03:04 +02:00
<OverallResults successes="681" failures="100" expectedFailures="13"/>
2013-09-27 20:01:14 +02:00
</Catch>