| 150 | // Useful testing::Types declarations |
| 151 | |
| 152 | inline void PrintTo(StatusCode code, std::ostream* os) { |
| 153 | *os << Status::CodeAsString(code); |
| 154 | } |
| 155 | |
| 156 | using NumericArrowTypes = |
| 157 | ::testing::Types<UInt8Type, UInt16Type, UInt32Type, UInt64Type, Int8Type, Int16Type, |
no test coverage detected