| 96 | } |
| 97 | |
| 98 | static void ChunkCSVQuotedBlock(benchmark::State& state) { // NOLINT non-const reference |
| 99 | auto csv = BuildCSVData(quoted_example); |
| 100 | auto options = ParseOptions::Defaults(); |
| 101 | options.quoting = true; |
| 102 | options.escaping = false; |
| 103 | options.newlines_in_values = true; |
| 104 | |
| 105 | BenchmarkCSVChunking(state, csv, options); |
| 106 | } |
| 107 | |
| 108 | static void ChunkCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference |
| 109 | auto csv = BuildCSVData(escaped_example); |
nothing calls this directly
no test coverage detected