Home | History | Annotate | Download | only in test

Lines Matching refs:EndsWith

1304 // Tests String::EndsWith().
1305 TEST(StringTest, EndsWith) {
1306 EXPECT_TRUE(String("foobar").EndsWith("bar"));
1307 EXPECT_TRUE(String("foobar").EndsWith(""));
1308 EXPECT_TRUE(String("").EndsWith(""));
1310 EXPECT_FALSE(String("foobar").EndsWith("foo"));
1311 EXPECT_FALSE(String("").EndsWith("foo"));