| 198 | } |
| 199 | |
| 200 | static void ParseCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference |
| 201 | auto options = ParseOptions::Defaults(); |
| 202 | options.quoting = false; |
| 203 | options.escaping = true; |
| 204 | |
| 205 | BenchmarkCSVParsing(state, escaped_example, options); |
| 206 | } |
| 207 | |
| 208 | static void ParseCSVFlightsExample( |
| 209 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected