| 390 | } |
| 391 | |
| 392 | void BoundsCheckPasses(const std::shared_ptr<DataType>& type, |
| 393 | const std::string& indices_json, uint64_t upper_limit) { |
| 394 | auto indices = ArrayFromJSON(type, indices_json); |
| 395 | ASSERT_OK(CheckIndexBounds(*indices->data(), upper_limit)); |
| 396 | } |
| 397 | |
| 398 | void BoundsCheckFails(const std::shared_ptr<DataType>& type, |
| 399 | const std::string& indices_json, uint64_t upper_limit) { |
no test coverage detected