| 51 | |
| 52 | template <typename T> |
| 53 | static void |
| 54 | checkArrayEqual(PropertyArrayView<T> arrayView, std::vector<T> expected) { |
| 55 | REQUIRE(arrayView.size() == static_cast<int64_t>(expected.size())); |
| 56 | for (int64_t i = 0; i < arrayView.size(); i++) { |
| 57 | REQUIRE(arrayView[i] == expected[static_cast<size_t>(i)]); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | template <typename T> static void checkNumeric(const std::vector<T>& expected) { |
| 62 | std::vector<std::byte> data; |
no test coverage detected