reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
259 EXPECT_THAT(GetComponents("/foo"), testing::ElementsAre("/", "foo")); 260 EXPECT_THAT(GetComponents("/"), testing::ElementsAre("/")); 261 EXPECT_THAT(GetComponents("//"), testing::ElementsAre("/")); 262 EXPECT_THAT(GetComponents("///"), testing::ElementsAre("/")); 263 EXPECT_THAT(GetComponents("c/d/e/foo.txt"), 265 EXPECT_THAT(GetComponents(".c/.d/../."), 267 EXPECT_THAT(GetComponents("/c/d/e/foo.txt"), 269 EXPECT_THAT(GetComponents("/.c/.d/../."), 271 EXPECT_THAT(GetComponents("c:\\c\\e\\foo.txt", path::Style::windows), 273 EXPECT_THAT(GetComponents("//net/"), testing::ElementsAre("//net", "/")); 274 EXPECT_THAT(GetComponents("//net/c/foo.txt"),