Searched refs:from_cstr (Results 1 – 1 of 1) sorted by relevance
44 ImmutableString from_cstr("alpha"); in test_template_immutable_string() local46 CU_ASSERT(0 == strcmp("alpha", from_cstr.c_str())); in test_template_immutable_string()47 CU_ASSERT(5 == from_cstr.size()); in test_template_immutable_string()48 CU_ASSERT(!from_cstr.empty()); in test_template_immutable_string()49 CU_ASSERT("alpha" == from_cstr); in test_template_immutable_string()50 CU_ASSERT(from_cstr == "alpha"); in test_template_immutable_string()51 CU_ASSERT(std::string("alpha") == from_cstr); in test_template_immutable_string()52 CU_ASSERT(from_cstr == std::string("alpha")); in test_template_immutable_string()77 move = std::move(from_cstr); in test_template_immutable_string()81 CU_ASSERT("" == from_cstr); in test_template_immutable_string()[all …]