| 106 | } |
| 107 | |
| 108 | static void ChunkCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference |
| 109 | auto csv = BuildCSVData(escaped_example); |
| 110 | auto options = ParseOptions::Defaults(); |
| 111 | options.quoting = false; |
| 112 | options.escaping = true; |
| 113 | options.newlines_in_values = true; |
| 114 | |
| 115 | BenchmarkCSVChunking(state, csv, options); |
| 116 | } |
| 117 | |
| 118 | static void ChunkCSVNoNewlinesBlock( |
| 119 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected