| 1744 | public MakeFileSystemDatasetMixin {}; |
| 1745 | |
| 1746 | static std::vector<std::string> PathsOf(const FragmentVector& fragments) { |
| 1747 | std::vector<std::string> paths(fragments.size()); |
| 1748 | std::transform(fragments.begin(), fragments.end(), paths.begin(), PathOf); |
| 1749 | return paths; |
| 1750 | } |
| 1751 | |
| 1752 | inline void AssertFilesAre(const std::shared_ptr<Dataset>& dataset, |
| 1753 | std::vector<std::string> expected) { |
no test coverage detected