Lines Matching refs:text
34 std::string text = "When parsing '"; in TEST() local
35 text += kData[n].input; in TEST()
36 text += "'"; in TEST()
39 EXPECT_STREQ(kData[n].expected, result.c_str()) << text; in TEST()
65 std::string text = "When parsing '"; in TEST() local
66 text += kData[n].input; in TEST()
67 text += "'"; in TEST()
72 &error)) << text; in TEST()
74 EXPECT_STREQ(kData[n].expectedType, vartype.c_str()) << text; in TEST()
76 EXPECT_STREQ(kData[n].expectedError, error.c_str()) << text; in TEST()
104 std::string text = "When parsing '"; in TEST() local
105 text += kData[n].input; in TEST()
106 text += "'"; in TEST()
112 &error)) << text; in TEST()
114 EXPECT_STREQ(kData[n].expectedType, vartype.c_str()) << text; in TEST()
115 EXPECT_STREQ(kData[n].expectedVariable, varname.c_str()) << text; in TEST()
117 EXPECT_STREQ(kData[n].expectedError, error.c_str()) << text; in TEST()