Searched refs:str_hello (Results 1 – 5 of 5) sorted by relevance
30 std::string str_hello = "hello"; member63 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 …]
349 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 …]
310 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 == 6318 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 == 5604 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 != 5613 Condition.tests.cpp:<line number>: passed: data.str_hello != "goodbye" for: "hello" != "goodbye"[all …]
2285 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 …]
1506 const char str_hello[] = { 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x00 }; /* hello */ in TestUTextAPI() local1511 utext_openUTF8(&patternText, str_hello, -1, &status); in TestUTextAPI()1524 TEST_ASSERT_UTEXT(str_hello, resultText); in TestUTextAPI()