Exercise QuotedColumnPopulator with string (without quote)
| 118 | |
| 119 | // Exercise QuotedColumnPopulator with string (without quote) |
| 120 | void WriteCsvStringNoQuote(benchmark::State& state) { |
| 121 | auto batch = MakeStrTestBatch(kCsvRows, kCsvCols, /*quote=*/false, state.range(0)); |
| 122 | BenchmarkWriteCsv(state, WriteOptions::Defaults(), *batch); |
| 123 | } |
| 124 | |
| 125 | // Exercise QuotedColumnPopulator with string (with quote) |
| 126 | void WriteCsvStringWithQuote(benchmark::State& state) { |
nothing calls this directly
no test coverage detected