Home | History | Annotate | Download | only in test

Lines Matching refs:FormatFileLocation

232 // Verifies behavior of FormatFileLocation.
234 EXPECT_PRED_FORMAT2(IsSubstring, "foo.cc", FormatFileLocation("foo.cc", 42));
235 EXPECT_PRED_FORMAT2(IsSubstring, "42", FormatFileLocation("foo.cc", 42));
240 IsSubstring, "unknown file", FormatFileLocation(NULL, 42));
241 EXPECT_PRED_FORMAT2(IsSubstring, "42", FormatFileLocation(NULL, 42));
245 EXPECT_EQ("foo.cc:", FormatFileLocation("foo.cc", -1));
249 EXPECT_EQ("unknown file:", FormatFileLocation(NULL, -1));