| 1183 | } |
| 1184 | |
| 1185 | TEST_P(TestJsonRoundTrip, RoundTrip) { |
| 1186 | std::shared_ptr<RecordBatch> batch; |
| 1187 | ASSERT_OK((*GetParam())(&batch)); // NOLINT clang-tidy gtest issue |
| 1188 | |
| 1189 | CheckRoundtrip(*batch); |
| 1190 | } |
| 1191 | |
| 1192 | const std::vector<ipc::test::MakeRecordBatch*> kBatchCases = { |
| 1193 | &MakeIntRecordBatch, |
nothing calls this directly
no test coverage detected