Home
last modified time | relevance | path

Searched refs:str_hello (Results 1 – 5 of 5) sorted by relevance

/external/catch2/projects/SelfTest/UsageTests/
DCondition.tests.cpp30 std::string str_hello = "hello"; member
63 REQUIRE( data.str_hello == "hello" );
64 REQUIRE( "hello" == data.str_hello );
65 REQUIRE( data.str_hello.size() == 5 );
83 CHECK( data.str_hello == "goodbye" );
84 CHECK( data.str_hello == "hell" );
85 CHECK( data.str_hello == "hello1" );
86 CHECK( data.str_hello.size() == 6 );
103 REQUIRE( data.str_hello != "goodbye" );
104 REQUIRE( data.str_hello != "hell" );
[all …]
/external/catch2/projects/SelfTest/Baselines/
Dconsole.std.approved.txt349 CHECK( data.str_hello == "goodbye" )
354 CHECK( data.str_hello == "hell" )
359 CHECK( data.str_hello == "hello1" )
364 CHECK( data.str_hello.size() == 6 )
573 CHECK( data.str_hello != "hello" )
578 CHECK( data.str_hello.size() != 5 )
697 CHECK( data.str_hello > "hello" )
702 CHECK( data.str_hello < "hello" )
707 CHECK( data.str_hello > "hellp" )
712 CHECK( data.str_hello > "z" )
[all …]
Dcompact.sw.approved.txt310 Condition.tests.cpp:<line number>: failed: data.str_hello == "goodbye" for: "hello" == "goodbye"
311 Condition.tests.cpp:<line number>: failed: data.str_hello == "hell" for: "hello" == "hell"
312 Condition.tests.cpp:<line number>: failed: data.str_hello == "hello1" for: "hello" == "hello1"
313 Condition.tests.cpp:<line number>: failed: data.str_hello.size() == 6 for: 5 == 6
318 Condition.tests.cpp:<line number>: passed: data.str_hello == "hello" for: "hello" == "hello"
319 Condition.tests.cpp:<line number>: passed: "hello" == data.str_hello for: "hello" == "hello"
320 Condition.tests.cpp:<line number>: passed: data.str_hello.size() == 5 for: 5 == 5
604 Condition.tests.cpp:<line number>: failed: data.str_hello != "hello" for: "hello" != "hello"
605 Condition.tests.cpp:<line number>: failed: data.str_hello.size() != 5 for: 5 != 5
613 Condition.tests.cpp:<line number>: passed: data.str_hello != "goodbye" for: "hello" != "goodbye"
[all …]
Dconsole.sw.approved.txt2285 CHECK( data.str_hello == "goodbye" )
2290 CHECK( data.str_hello == "hell" )
2295 CHECK( data.str_hello == "hello1" )
2300 CHECK( data.str_hello.size() == 6 )
2331 REQUIRE( data.str_hello == "hello" )
2336 REQUIRE( "hello" == data.str_hello )
2341 REQUIRE( data.str_hello.size() == 5 )
4426 CHECK( data.str_hello != "hello" )
4431 CHECK( data.str_hello.size() != 5 )
4477 REQUIRE( data.str_hello != "goodbye" )
[all …]
/external/icu/icu4c/source/test/cintltst/
Dreapits.c1506 const char str_hello[] = { 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x00 }; /* hello */ in TestUTextAPI() local
1511 utext_openUTF8(&patternText, str_hello, -1, &status); in TestUTextAPI()
1524 TEST_ASSERT_UTEXT(str_hello, resultText); in TestUTextAPI()