| 65 | } |
| 66 | |
| 67 | void AssertNotExists(const PlatformFilename& path) { |
| 68 | bool exists = true; |
| 69 | ASSERT_OK_AND_ASSIGN(exists, FileExists(path)); |
| 70 | ASSERT_FALSE(exists) << "Path '" << path.ToString() << "' exists"; |
| 71 | } |
| 72 | |
| 73 | void TouchFile(const PlatformFilename& path) { |
| 74 | ASSERT_OK_AND_ASSIGN(FileDescriptor fd, FileOpenWritable(path)); |
no test coverage detected