| 228 | } |
| 229 | |
| 230 | void GenericFileSystemTest::TestNormalizePath(FileSystem* fs) { |
| 231 | // Canonical abstract paths should go through unchanged |
| 232 | ASSERT_OK_AND_EQ("AB", fs->NormalizePath("AB")); |
| 233 | ASSERT_OK_AND_EQ("AB/CD/efg", fs->NormalizePath("AB/CD/efg")); |
| 234 | } |
| 235 | |
| 236 | void GenericFileSystemTest::TestCreateDir(FileSystem* fs) { |
| 237 | ASSERT_OK(fs->CreateDir("AB")); |
nothing calls this directly
no test coverage detected