| 488 | } |
| 489 | |
| 490 | void CheckInRangePasses(const std::shared_ptr<DataType>& type, |
| 491 | const std::string& values_json, const std::string& limits_json) { |
| 492 | auto values = ArrayFromJSON(type, values_json); |
| 493 | auto limits = ArrayFromJSON(type, limits_json); |
| 494 | ASSERT_OK(CheckIntegersInRange(*values->data(), **limits->GetScalar(0), |
| 495 | **limits->GetScalar(1))); |
| 496 | } |
| 497 | |
| 498 | void CheckInRangeFails(const std::shared_ptr<DataType>& type, |
| 499 | const std::string& values_json, const std::string& limits_json) { |
no test coverage detected