| 190 | } |
| 191 | |
| 192 | static void ParseCSVQuotedBlock(benchmark::State& state) { // NOLINT non-const reference |
| 193 | auto options = ParseOptions::Defaults(); |
| 194 | options.quoting = true; |
| 195 | options.escaping = false; |
| 196 | |
| 197 | BenchmarkCSVParsing(state, quoted_example, options); |
| 198 | } |
| 199 | |
| 200 | static void ParseCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference |
| 201 | auto options = ParseOptions::Defaults(); |
nothing calls this directly
no test coverage detected