| 104 | } |
| 105 | |
| 106 | void AssertChunk(std::vector<std::string> chunk, std::shared_ptr<Array> expected) { |
| 107 | std::shared_ptr<BlockParser> parser; |
| 108 | MakeColumnParser(chunk, &parser); |
| 109 | ASSERT_FINISHES_OK_AND_ASSIGN(auto decoded, decoder_->Decode(parser)); |
| 110 | AssertArraysEqual(*expected, *decoded); |
| 111 | } |
| 112 | |
| 113 | void AssertChunkInvalid(std::vector<std::string> chunk) { |
| 114 | std::shared_ptr<BlockParser> parser; |
nothing calls this directly
no test coverage detected