Exercise QuotedColumnPopulator with string (with quote)
| 124 | |
| 125 | // Exercise QuotedColumnPopulator with string (with quote) |
| 126 | void WriteCsvStringWithQuote(benchmark::State& state) { |
| 127 | auto batch = MakeStrTestBatch(kCsvRows, kCsvCols, /*quote=*/true, state.range(0)); |
| 128 | BenchmarkWriteCsv(state, WriteOptions::Defaults(), *batch); |
| 129 | } |
| 130 | |
| 131 | // Exercise UnQuotedColumnPopulator with string |
| 132 | // - caller guarantees there will be no quote in the inputs |
nothing calls this directly
no test coverage detected