| 85 | } |
| 86 | |
| 87 | TEST(SupportedEncodings, TestMakeDecoder) { |
| 88 | auto make_decoder = [](Type::type type, Encoding::type encoding, |
| 89 | const ColumnDescriptor& descr) { |
| 90 | ARROW_UNUSED(MakeDecoder(type, encoding, &descr)); |
| 91 | }; |
| 92 | TestSupportedEncodingsConsistentWith(make_decoder); |
| 93 | } |
| 94 | |
| 95 | TEST(SupportedEncodings, TestMakeEncoder) { |
| 96 | auto make_encoder = [](Type::type type, Encoding::type encoding, |
nothing calls this directly
no test coverage detected