| 149 | } |
| 150 | |
| 151 | void AssertFileInfo(const FileInfo& info, const std::string& path, FileType type) { |
| 152 | ASSERT_EQ(info.path(), path); |
| 153 | ASSERT_EQ(info.type(), type) << "For path '" << info.path() << "'"; |
| 154 | } |
| 155 | |
| 156 | void AssertFileInfo(const FileInfo& info, const std::string& path, FileType type, |
| 157 | TimePoint mtime) { |
no test coverage detected