d == Approx( 1.23 )
1.23 == Approx( 1.23 )
d != Approx( 1.22 )
1.23 != Approx( 1.22 )
d != Approx( 1.24 )
1.23 != Approx( 1.24 )
Approx( d ) == 1.23
Approx( 1.23 ) == 1.23
Approx( d ) != 1.22
Approx( 1.23 ) != 1.22
Approx( d ) != 1.24
Approx( 1.23 ) != 1.24
d != Approx( 1.231 )
1.23 != Approx( 1.231 )
d == Approx( 1.231 ).epsilon( 0.1 )
1.23 == Approx( 1.231 )
1.23f == Approx( 1.23f )
1.23f == Approx( 1.2300000191 )
0.0f == Approx( 0.0f )
0.0f == Approx( 0.0 )
1 == Approx( 1 )
1 == Approx( 1.0 )
0 == Approx( 0 )
0 == Approx( 0.0 )
1.0f == Approx( 1 )
1.0f == Approx( 1.0 )
0 == Approx( dZero)
0 == Approx( 0.0 )
0 == Approx( dSmall ).epsilon( 0.001 )
0 == Approx( 0.00001 )
1.234f == Approx( dMedium )
1.234f == Approx( 1.234 )
dMedium == Approx( 1.234f )
1.234 == Approx( 1.2339999676 )
d == approx( 1.23 )
1.23 == Approx( 1.23 )
d == approx( 1.22 )
1.23 == Approx( 1.22 )
d == approx( 1.24 )
1.23 == Approx( 1.24 )
d != approx( 1.25 )
1.23 != Approx( 1.25 )
approx( d ) == 1.23
Approx( 1.23 ) == 1.23
approx( d ) == 1.22
Approx( 1.23 ) == 1.22
approx( d ) == 1.24
Approx( 1.23 ) == 1.24
approx( d ) != 1.25
Approx( 1.23 ) != 1.25
divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 )
3.1428571429 == Approx( 3.141 )
divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 )
3.1428571429 != Approx( 3.141 )
s == "hello"
"hello" == "hello"
s == "world"
"hello" == "world"
m_a == 1
1 == 1
m_a == 2
1 == 2
data.int_seven == 7
7 == 7
data.float_nine_point_one == Approx( 9.1f )
9.1f == Approx( 9.1000003815 )
data.double_pi == Approx( 3.1415926535 )
3.1415926535 == Approx( 3.1415926535 )
data.str_hello == "hello"
"hello" == "hello"
"hello" == data.str_hello
"hello" == "hello"
data.str_hello.size() == 5
5 == 5
x == Approx( 1.3 )
1.3 == Approx( 1.3 )
data.int_seven == 6
7 == 6
data.int_seven == 8
7 == 8
data.int_seven == 0
7 == 0
data.float_nine_point_one == Approx( 9.11f )
9.1f == Approx( 9.1099996567 )
data.float_nine_point_one == Approx( 9.0f )
9.1f == Approx( 9.0 )
data.float_nine_point_one == Approx( 1 )
9.1f == Approx( 1.0 )
data.float_nine_point_one == Approx( 0 )
9.1f == Approx( 0.0 )
data.double_pi == Approx( 3.1415 )
3.1415926535 == Approx( 3.1415 )
data.str_hello == "goodbye"
"hello" == "goodbye"
data.str_hello == "hell"
"hello" == "hell"
data.str_hello == "hello1"
"hello" == "hello1"
data.str_hello.size() == 6
5 == 6
x == Approx( 1.301 )
1.3 == Approx( 1.301 )
data.int_seven != 6
7 != 6
data.int_seven != 8
7 != 8
data.float_nine_point_one != Approx( 9.11f )
9.1f != Approx( 9.1099996567 )
data.float_nine_point_one != Approx( 9.0f )
9.1f != Approx( 9.0 )
data.float_nine_point_one != Approx( 1 )
9.1f != Approx( 1.0 )
data.float_nine_point_one != Approx( 0 )
9.1f != Approx( 0.0 )
data.double_pi != Approx( 3.1415 )
3.1415926535 != Approx( 3.1415 )
data.str_hello != "goodbye"
"hello" != "goodbye"
data.str_hello != "hell"
"hello" != "hell"
data.str_hello != "hello1"
"hello" != "hello1"
data.str_hello.size() != 6
5 != 6
data.int_seven != 7
7 != 7
data.float_nine_point_one != Approx( 9.1f )
9.1f != Approx( 9.1000003815 )
data.double_pi != Approx( 3.1415926535 )
3.1415926535 != Approx( 3.1415926535 )
data.str_hello != "hello"
"hello" != "hello"
data.str_hello.size() != 5
5 != 5
data.int_seven < 8
7 < 8
data.int_seven > 6
7 > 6
data.int_seven > 0
7 > 0
data.int_seven > -1
7 > -1
data.int_seven >= 7
7 >= 7
data.int_seven >= 6
7 >= 6
data.int_seven <= 7
7 <= 7
data.int_seven <= 8
7 <= 8
data.float_nine_point_one > 9
9.1f > 9
data.float_nine_point_one < 10
9.1f < 10
data.float_nine_point_one < 9.2
9.1f < 9.2
data.str_hello <= "hello"
"hello" <= "hello"
data.str_hello >= "hello"
"hello" >= "hello"
data.str_hello < "hellp"
"hello" < "hellp"
data.str_hello < "zebra"
"hello" < "zebra"
data.str_hello > "hellm"
"hello" > "hellm"
data.str_hello > "a"
"hello" > "a"
data.int_seven > 7
7 > 7
data.int_seven < 7
7 < 7
data.int_seven > 8
7 > 8
data.int_seven < 6
7 < 6
data.int_seven < 0
7 < 0
data.int_seven < -1
7 < -1
data.int_seven >= 8
7 >= 8
data.int_seven <= 6
7 <= 6
data.float_nine_point_one < 9
9.1f < 9
data.float_nine_point_one > 10
9.1f > 10
data.float_nine_point_one > 9.2
9.1f > 9.2
data.str_hello > "hello"
"hello" > "hello"
data.str_hello < "hello"
"hello" < "hello"
data.str_hello > "hellp"
"hello" > "hellp"
data.str_hello > "z"
"hello" > "z"
data.str_hello < "hellm"
"hello" < "hellm"
data.str_hello < "a"
"hello" < "a"
data.str_hello >= "z"
"hello" >= "z"
data.str_hello <= "a"
"hello" <= "a"
i == 1
1 == 1
ui == 2
2 == 2
l == 3
3 == 3
ul == 4
4 == 4
c == 5
5 == 5
uc == 6
6 == 6
1 == i
1 == 1
2 == ui
2 == 2
3 == l
3 == 3
4 == ul
4 == 4
5 == c
5 == 5
6 == uc
6 == 6
(std::numeric_limits<unsigned long>::max)() > ul
0x > 4
long_var == unsigned_char_var
1 == 1
long_var == unsigned_short_var
1 == 1
long_var == unsigned_int_var
1 == 1
long_var == unsigned_long_var
1 == 1
unsigned_char_var == 1
1 == 1
unsigned_short_var == 1
1 == 1
unsigned_int_var == 1
1 == 1
unsigned_long_var == 1
1 == 1
( -1 > 2u )
true
-1 > 2u
-1 > 2
( 2u < -1 )
true
2u < -1
2 < -1
( minInt > 2u )
true
minInt > 2u
-2147483648 > 2
54 == 6*9
54 == 54
p == __null
__null == 0
p == pNULL
__null == __null
p != __null
0x != 0
cp != __null
0x != 0
cpc != __null
0x != 0
returnsNull() == __null
{null string} == 0
returnsConstNull() == __null
{null string} == 0
__null != p
0 != 0x
false == false
false == false
true == true
true == true
!false
true
!false
!false
!falseValue
true
!falseValue
!false
!(1 == 2)
true
!1 == 2
!(1 == 2)
false != false
false != false
true != true
true != true
!true
false
!true
!true
!trueValue
false
!trueValue
!true
!(1 == 1)
false
!1 == 1
!(1 == 1)
thisThrows()
thisThrows()
thisDoesntThrow()
thisDoesntThrow()
thisThrows()
thisThrows()
thisThrows()
thisThrows()
expected exception
thisDoesntThrow()
thisDoesntThrow()
thisThrows()
thisThrows()
expected exception
unexpected exception
1 == 1
1 == 1
{Unknown expression after the reported line}
{Unknown expression after the reported line}
unexpected exception
thisThrows() == 0
thisThrows() == 0
expected exception
thisThrows() == 0
thisThrows() == 0
expected exception
thisThrows() == 0
thisThrows() == 0
expected exception
custom exception
throwCustom()
throwCustom()
custom exception - not std
throwCustom()
throwCustom()
custom exception - not std
3.14
thisFunctionNotImplemented( 7 )
thisFunctionNotImplemented( 7 )
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
200 == 200
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
202 == 202
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
204 == 204
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
206 == 206
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
208 == 208
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
210 == 210
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
212 == 212
multiply( i, 2 ) == i*2
2 == 2
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
4 == 4
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
6 == 6
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
8 == 8
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
10 == 10
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
30 == 30
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
40 == 40
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
42 == 42
multiply( j, 2 ) == j*2
214 == 214
multiply( i, 2 ) == i*2
72 == 72
multiply( j, 2 ) == j*2
214 == 214
i->first == i->second-1
0 == 0
i->first == i->second-1
2 == 2
this is a message
this is a warning
this message should be logged
so should this
a == 1
2 == 1
a == 2
2 == 2
this message should be logged
a == 1
2 == 1
and this, but later
a == 0
2 == 0
a == 2
2 == 2
This is a failure
i < 10
0 < 10
i < 10
1 < 10
i < 10
2 < 10
i < 10
3 < 10
i < 10
4 < 10
i < 10
5 < 10
i < 10
6 < 10
i < 10
7 < 10
i < 10
8 < 10
i < 10
9 < 10
current counter 10
i := 10
i < 10
10 < 10
1 == 2
1 == 2
Previous info should not be seen
hi
i := 7
false
false
actual address of p: 0x
toString(p): 0x
a != b
1 != 2
b != a
2 != 1
a != b
1 != 2
b != a
2 != 1
Testing if fib[0] (1) is even
( fib[i] % 2 ) == 0
1 == 0
Testing if fib[1] (1) is even
( fib[i] % 2 ) == 0
1 == 0
( fib[i] % 2 ) == 0
0 == 0
Testing if fib[3] (3) is even
( fib[i] % 2 ) == 0
1 == 0
Testing if fib[4] (5) is even
( fib[i] % 2 ) == 0
1 == 0
( fib[i] % 2 ) == 0
0 == 0
Testing if fib[6] (13) is even
( fib[i] % 2 ) == 0
1 == 0
Testing if fib[7] (21) is even
( fib[i] % 2 ) == 0
1 == 0
makeString( false ) != static_cast<char*>(__null)
"valid string" != {null string}
makeString( true ) == static_cast<char*>(__null)
{null string} == {null string}
flag
true
testCheckedIf( true )
true
flag
false
testCheckedIf( false )
false
flag
true
testCheckedElse( true )
true
flag
false
testCheckedElse( false )
false
3
false
false
x == 0
0 == 0
testStringForMatching() Contains( "string" )
"this string contains 'abc' as a substring" contains: "string"
testStringForMatching() Contains( "abc" )
"this string contains 'abc' as a substring" contains: "abc"
testStringForMatching() StartsWith( "this" )
"this string contains 'abc' as a substring" starts with: "this"
testStringForMatching() EndsWith( "substring" )
"this string contains 'abc' as a substring" ends with: "substring"
testStringForMatching() Contains( "not there" )
"this string contains 'abc' as a substring" contains: "not there"
testStringForMatching() StartsWith( "string" )
"this string contains 'abc' as a substring" starts with: "string"
testStringForMatching() EndsWith( "this" )
"this string contains 'abc' as a substring" ends with: "this"
testStringForMatching() Equals( "something else" )
"this string contains 'abc' as a substring" equals: "something else"
"" Equals(__null)
"" equals: ""
testStringForMatching() AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) )
"this string contains 'abc' as a substring" ( contains: "string" and contains: "abc" )
testStringForMatching() AnyOf( Catch::Contains( "string" ), Catch::Contains( "not there" ) )
"this string contains 'abc' as a substring" ( contains: "string" or contains: "not there" )
testStringForMatching() AnyOf( Catch::Contains( "not there" ), Catch::Contains( "string" ) )
"this string contains 'abc' as a substring" ( contains: "not there" or contains: "string" )
testStringForMatching() Equals( "this string contains 'abc' as a substring" )
"this string contains 'abc' as a substring" equals: "this string contains 'abc' as a substring"
Factorial(0) == 1
1 == 1
Factorial(1) == 1
1 == 1
Factorial(2) == 2
2 == 2
Factorial(3) == 6
6 == 6
Factorial(10) == 3628800
0x == 3628800
This one ran
v.size() == 5
5 == 5
v.capacity() >= 5
5 >= 5
v.size() == 10
10 == 10
v.capacity() >= 10
10 >= 10
v.size() == 5
5 == 5
v.capacity() >= 5
5 >= 5
v.size() == 0
0 == 0
v.capacity() >= 5
5 >= 5
v.size() == 5
5 == 5
v.capacity() >= 5
5 >= 5
v.size() == 5
5 == 5
v.capacity() >= 10
10 >= 10
v.size() == 5
5 == 5
v.capacity() >= 5
5 >= 5
v.size() == 5
5 == 5
v.capacity() >= 5
5 >= 5
to infinity and beyond
s1 == s2
"if ($b == 10) {
$a = 20;
}"
==
"if ($b == 10) {
$a = 20;
}
"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.shouldDebugBreak == false
false == false
config.abortAfter == -1
-1 == -1
config.noThrow == false
false == false
config.reporterName.empty()
true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
cfg.testSpec().matches( fakeTestCase( "notIncluded" ) ) == false
false == false
cfg.testSpec().matches( fakeTestCase( "test1" ) )
true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
cfg.testSpec().matches( fakeTestCase( "test1" ) ) == false
false == false
cfg.testSpec().matches( fakeTestCase( "alwaysIncluded" ) )
true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
cfg.testSpec().matches( fakeTestCase( "test1" ) ) == false
false == false
cfg.testSpec().matches( fakeTestCase( "alwaysIncluded" ) )
true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.reporterName == "console"
"console" == "console"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.reporterName == "xml"
"xml" == "xml"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.reporterName == "junit"
"junit" == "junit"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.shouldDebugBreak == true
true == true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.shouldDebugBreak
true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.abortAfter == 1
1 == 1
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.abortAfter == 2
2 == 2
parseIntoConfigAndReturnError( argv, config ) Contains( "greater than zero" )
"Value after -x or --abortAfter must be greater than zero
- while parsing: (-x, --abortx <no. failures>)" contains: "greater than zero"
parseIntoConfigAndReturnError( argv, config ) Contains( "-x" )
"Unable to convert oops to destination type
- while parsing: (-x, --abortx <no. failures>)" contains: "-x"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.noThrow == true
true == true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.noThrow == true
true == true
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.outputFilename == "filename.ext"
"filename.ext" == "filename.ext"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.outputFilename == "filename.ext"
"filename.ext" == "filename.ext"
parseIntoConfig( argv, config )
parseIntoConfig( argv, config )
config.abortAfter == 1
1 == 1
config.shouldDebugBreak
true
config.noThrow == true
true == true
Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString
"one two three four"
==
"one two three four"
Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString
"one two three four"
==
"one two three four"
Text( testString, TextAttributes().setWidth( 17 ) ).toString() == "one two three\nfour"
"one two three
four"
==
"one two three
four"
Text( testString, TextAttributes().setWidth( 16 ) ).toString() == "one two three\nfour"
"one two three
four"
==
"one two three
four"
Text( testString, TextAttributes().setWidth( 14 ) ).toString() == "one two three\nfour"
"one two three
four"
==
"one two three
four"
Text( testString, TextAttributes().setWidth( 13 ) ).toString() == "one two three\nfour"
"one two three
four"
==
"one two three
four"
Text( testString, TextAttributes().setWidth( 12 ) ).toString() == "one two\nthree four"
"one two
three four"
==
"one two
three four"
Text( testString, TextAttributes().setWidth( 9 ) ).toString() == "one two\nthree\nfour"
"one two
three
four"
==
"one two
three
four"
Text( testString, TextAttributes().setWidth( 8 ) ).toString() == "one two\nthree\nfour"
"one two
three
four"
==
"one two
three
four"
Text( testString, TextAttributes().setWidth( 7 ) ).toString() == "one two\nthree\nfour"
"one two
three
four"
==
"one two
three
four"
Text( testString, TextAttributes().setWidth( 6 ) ).toString() == "one\ntwo\nthree\nfour"
"one
two
three
four"
==
"one
two
three
four"
Text( testString, TextAttributes().setWidth( 5 ) ).toString() == "one\ntwo\nthree\nfour"
"one
two
three
four"
==
"one
two
three
four"
Text( "abcdef", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndef"
"abc-
def"
==
"abc-
def"
Text( "abcdefg", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndefg"
"abc-
defg"
==
"abc-
defg"
Text( "abcdefgh", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndef-\ngh"
"abc-
def-
gh"
==
"abc-
def-
gh"
Text( testString, TextAttributes().setWidth( 4 ) ).toString() == "one\ntwo\nthr-\nee\nfour"
"one
two
thr-
ee
four"
==
"one
two
thr-
ee
four"
Text( testString, TextAttributes().setWidth( 3 ) ).toString() == "one\ntwo\nth-\nree\nfo-\nur"
"one
two
th-
ree
fo-
ur"
==
"one
two
th-
ree
fo-
ur"
text.size() == 4
4 == 4
text[0] == "one"
"one" == "one"
text[1] == "two"
"two" == "two"
text[2] == "three"
"three" == "three"
text[3] == "four"
"four" == "four"
text.toString() == " one two\n three\n four"
" one two
three
four"
==
" one two
three
four"
Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString
"one two
three four"
==
"one two
three four"
Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString
"one two
three four"
==
"one two
three four"
Text( testString, TextAttributes().setWidth( 10 ) ).toString() == testString
"one two
three four"
==
"one two
three four"
Text( "abcdef\n", TextAttributes().setWidth( 10 ) ).toString() == "abcdef\n"
"abcdef
"
==
"abcdef
"
Text( "abcdef", TextAttributes().setWidth( 6 ) ).toString() == "abcdef"
"abcdef" == "abcdef"
Text( "abcdef\n", TextAttributes().setWidth( 6 ) ).toString() == "abcdef\n"
"abcdef
"
==
"abcdef
"
Text( testString, TextAttributes().setWidth( 9 ) ).toString() == "one two\nthree\nfour"
"one two
three
four"
==
"one two
three
four"
Text( testString, TextAttributes().setWidth( 8 ) ).toString() == "one two\nthree\nfour"
"one two
three
four"
==
"one two
three
four"
Text( testString, TextAttributes().setWidth( 7 ) ).toString() == "one two\nthree\nfour"
"one two
three
four"
==
"one two
three
four"
Text( testString, TextAttributes().setWidth( 6 ) ).toString() == "one\ntwo\nthree\nfour"
"one
two
three
four"
==
"one
two
three
four"
Text( testString, TextAttributes().setWidth( 15 ) ).toString() == "one two three\n four\n five\n six"
"one two three
four
five
six"
==
"one two three
four
five
six"
Text( "hi there" ).toString() == "hi there"
"hi there" == "hi there"
Text( "hi there", narrow ).toString() == "hi\nthere"
"hi
there"
==
"hi
there"
t.toString() EndsWith( "... message truncated due to excessive size" )
"******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
******************************************************************************-
************************
******************************************************************************-
... message truncated due to excessive size" ends with: "... message truncated due to excessive size"
(std::pair<int, int>( 1, 2 )) == aNicePair
std::pair( 1, 2 ) == std::pair( 1, 2 )
Uncomment the code in this test to check that it gives a sensible compiler error
Uncomment the code in this test to check that it gives a sensible compiler error
&o1 == &o2
0x == 0x
o1 == o2
{?} == {?}
std::string( "first" ) == "second"
"first" == "second"
i++ == 7
7 == 7
i++ == 8
8 == 8
0x == o
0x == {?}
t == 1u
{?} == 1
0x == bit30and31
0x == 3221225472
obj.prop != __null
0x != 0
is_true<true>::value == true
true == true
true == is_true<true>::value
true == true
is_true<false>::value == false
false == false
false == is_true<false>::value
false == false
!is_true<false>::value
true
!!is_true<true>::value
true
is_true<true>::value
true
!is_true<false>::value
!false
True
true
!False
true
!False
!false
Catch::alwaysTrue()
true
Catch::alwaysTrue()
true
s == "7"
"7" == "7"
a
true
a == &foo
0x == 0x
m == &S::f
0x
==
0x
p == 0
__null == 0
ptr.get() == nullptr
__null == nullptr
spec.hasFilters() == false
false == false
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.hasFilters() == false
false == false
spec.matches(tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.hasFilters() == false
false == false
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == false
false == false
parseTestSpec( "*a" ).matches( tcA ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == false
false == false
parseTestSpec( "a*" ).matches( tcA ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == true
true == true
parseTestSpec( "*a*" ).matches( tcA ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == false
false == false
spec.matches( tcD ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == false
false == false
spec.matches( tcD ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == true
true == true
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == false
false == false
spec.matches( tcD ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == true
true == true
spec.matches( tcB ) == true
true == true
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == true
true == true
spec.matches( tcD ) == false
false == false
spec.hasFilters() == false
false == false
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == false
false == false
spec.matches( tcD ) == false
false == false
spec.hasFilters() == false
false == false
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == false
false == false
spec.matches( tcD ) == false
false == false
spec.hasFilters() == true
true == true
spec.matches( tcA ) == false
false == false
spec.matches( tcB ) == false
false == false
spec.matches( tcC ) == false
false == false
spec.matches( tcD ) == true
true == true
what Contains( "[@zzz]" )
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "[@zzz]"
what Contains( "file" )
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "file"
what Contains( "2" )
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "2"
what Contains( "10" )
"error: tag alias, "[@zzz]" already registered.
First seen at file:2
Redefined at file:10" contains: "10"
registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) )
registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) )
v.size() == 0
0 == 0
v.size() == 10
10 == 10
v.capacity() >= 10
10 >= 10
v.size() == 5
5 == 5
v.capacity() >= 10
10 >= 10
v.size() == 0
0 == 0
v.capacity() >= 10
10 >= 10
v.size() == 0
0 == 0
!testCaseTracker.isCompleted()
!false
!testCaseTracker.isCompleted()
!false
testCaseTracker.isCompleted()
true
!testCaseTracker.isCompleted()
!false
testCaseTracker.enterSection( section1Name )
true
!testCaseTracker.isCompleted()
!false
testCaseTracker.isCompleted()
true
!testCaseTracker.enterSection( section1Name )
!false
!testCaseTracker.isCompleted()
!false
testCaseTracker.enterSection( section1Name )
true
!testCaseTracker.enterSection( section2Name )
!false
!testCaseTracker.isCompleted()
!false
!testCaseTracker.enterSection( section1Name )
!false
testCaseTracker.enterSection( section2Name )
true
testCaseTracker.isCompleted()
true
!testCaseTracker.isCompleted()
!false
testCaseTracker.enterSection( section1Name )
true
testCaseTracker.enterSection( section2Name )
true
!testCaseTracker.isCompleted()
!false
testCaseTracker.isCompleted()
true