Lines Matching refs:GetParam
60 auto process = std::string(GetParam().orig_str); in TEST_P()
61 EXPECT_EQ(GetParam().replace_should_succeed, in TEST_P()
62 FindAndReplace(&process, GetParam().find_substr, in TEST_P()
63 GetParam().replace_substr)) in TEST_P()
64 << "Original string: " << GetParam().orig_str in TEST_P()
65 << " replace: " << GetParam().find_substr in TEST_P()
66 << " to: " << GetParam().replace_substr in TEST_P()
67 << " should returns: " << GetParam().replace_should_succeed; in TEST_P()
68 EXPECT_STREQ(GetParam().expected_str, process.c_str()) in TEST_P()
69 << "Original string: " << GetParam().orig_str in TEST_P()
70 << " replace: " << GetParam().find_substr in TEST_P()
71 << " to: " << GetParam().replace_substr in TEST_P()
72 << " expected string: " << GetParam().expected_str; in TEST_P()