| 174 | } |
| 175 | |
| 176 | std::unique_ptr<Chunker> MakeChunker(bool newlines_in_values) { |
| 177 | auto options = ParseOptions::Defaults(); |
| 178 | options.newlines_in_values = newlines_in_values; |
| 179 | return MakeChunker(options); |
| 180 | } |
| 181 | |
| 182 | class BaseChunkerTest : public ::testing::TestWithParam<bool> { |
| 183 | protected: |