| 111 | } |
| 112 | |
| 113 | void AssertChunkInvalid(std::vector<std::string> chunk) { |
| 114 | std::shared_ptr<BlockParser> parser; |
| 115 | MakeColumnParser(chunk, &parser); |
| 116 | ASSERT_FINISHES_AND_RAISES(Invalid, decoder_->Decode(parser)); |
| 117 | } |
| 118 | |
| 119 | void AssertFetch(std::shared_ptr<Array> expected_chunk) { |
| 120 | ASSERT_OK_AND_ASSIGN(auto chunk, NextChunk()); |
nothing calls this directly
no test coverage detected