| 59 | namespace internal { |
| 60 | |
| 61 | void AssertExists(const PlatformFilename& path) { |
| 62 | bool exists = false; |
| 63 | ASSERT_OK_AND_ASSIGN(exists, FileExists(path)); |
| 64 | ASSERT_TRUE(exists) << "Path '" << path.ToString() << "' doesn't exist"; |
| 65 | } |
| 66 | |
| 67 | void AssertNotExists(const PlatformFilename& path) { |
| 68 | bool exists = true; |
no test coverage detected