| 124 | void SetUp() { TestFeatherBase::SetUp(); } |
| 125 | |
| 126 | WriteProperties GetProperties() { |
| 127 | auto param = GetParam(); |
| 128 | |
| 129 | auto props = WriteProperties::Defaults(); |
| 130 | props.version = param.version; |
| 131 | |
| 132 | // Don't fail if the build doesn't have LZ4_FRAME or ZSTD enabled |
| 133 | if (util::Codec::IsAvailable(param.compression)) { |
| 134 | props.compression = param.compression; |
| 135 | } else { |
| 136 | props.compression = Compression::UNCOMPRESSED; |
| 137 | } |
| 138 | return props; |
| 139 | } |
| 140 | }; |
| 141 | |
| 142 | class TestFeatherRoundTrip : public ::testing::TestWithParam<ipc::test::MakeRecordBatch*>, |
no test coverage detected