| 89 | } |
| 90 | |
| 91 | void CheckDirectory(FileSystem* fs, const std::string& path) { |
| 92 | ASSERT_OK_AND_ASSIGN(auto info, fs->GetFileInfo(path)); |
| 93 | AssertFileInfo(info, path, FileType::Directory); |
| 94 | } |
| 95 | |
| 96 | void ClearBucket(int argc, char** argv) { |
| 97 | ASSERT_OK_AND_ASSIGN(auto fs, MakeFileSystem()); |
no test coverage detected