| 78 | } |
| 79 | |
| 80 | void AssertAllDirs(FileSystem* fs, const std::vector<std::string>& expected_paths) { |
| 81 | AssertPaths(GetAllDirs(fs), expected_paths); |
| 82 | } |
| 83 | |
| 84 | void AssertAllFiles(FileSystem* fs, const std::vector<std::string>& expected_paths) { |
| 85 | AssertPaths(GetAllFiles(fs), expected_paths); |
no test coverage detected