| 232 | } |
| 233 | |
| 234 | TEST(ChunkerTest, PrettyPrinted) { |
| 235 | std::string pretty[object_count]; |
| 236 | std::transform(std::begin(lines()), std::end(lines()), std::begin(pretty), PrettyPrint); |
| 237 | auto chunker = MakeChunker(true); |
| 238 | AssertChunking(*chunker, join(pretty, "\n"), object_count); |
| 239 | } |
| 240 | |
| 241 | TEST(ChunkerTest, SingleLine) { |
| 242 | auto chunker = MakeChunker(true); |
nothing calls this directly
no test coverage detected