| 9 | |
| 10 | namespace CesiumNativeTests { |
| 11 | void checkFilesEqual( |
| 12 | const std::filesystem::path& fileA, |
| 13 | const std::filesystem::path& fileB) { |
| 14 | const std::vector<std::byte>& bytes = readFile(fileA); |
| 15 | const std::vector<std::byte>& bytes2 = readFile(fileB); |
| 16 | |
| 17 | REQUIRE(bytes == bytes2); |
| 18 | } |
| 19 | } // namespace CesiumNativeTests |
no test coverage detected