reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
370 EXPECT_STREQ("C:\\foo\\bar\\baz", fs_windows.GetCString()); 371 EXPECT_TRUE(fs_windows.RemoveLastPathComponent()); 372 EXPECT_STREQ("C:\\foo\\bar", fs_windows.GetCString()); 373 EXPECT_TRUE(fs_windows.RemoveLastPathComponent()); 374 EXPECT_STREQ("C:\\foo", fs_windows.GetCString()); 375 EXPECT_TRUE(fs_windows.RemoveLastPathComponent()); 376 EXPECT_STREQ("C:\\", fs_windows.GetCString()); 377 EXPECT_TRUE(fs_windows.RemoveLastPathComponent()); 378 EXPECT_STREQ("C:", fs_windows.GetCString()); 379 EXPECT_FALSE(fs_windows.RemoveLastPathComponent()); 380 EXPECT_STREQ("C:", fs_windows.GetCString());