| 5 | #include <fstream> |
| 6 | #include <filesystem> |
| 7 | static void createFile(std::wstring_view path, std::span<char const> buffer, int repeat = 1) |
| 8 | { |
| 9 | std::ofstream fs{ path.data() , std::ios::binary }; |
| 10 | while(repeat--) |
| 11 | fs.write(buffer.data(), buffer.size()); |
| 12 | } |
| 13 | |
| 14 | void Random4KFiles::operator()(std::vector<TestOperation>& test) const |
| 15 | { |
no test coverage detected