| 138 | } |
| 139 | |
| 140 | static void ChunkCSVVehiclesExample( |
| 141 | benchmark::State& state) { // NOLINT non-const reference |
| 142 | auto options = ParseOptions::Defaults(); |
| 143 | options.quoting = true; |
| 144 | options.escaping = false; |
| 145 | options.newlines_in_values = true; |
| 146 | |
| 147 | BenchmarkCSVChunking(state, vehicles_example, options); |
| 148 | } |
| 149 | |
| 150 | static void ChunkCSVStocksExample( |
| 151 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected