Exercise UnQuotedColumnPopulator with string - caller guarantees there will be no quote in the inputs
| 131 | // Exercise UnQuotedColumnPopulator with string |
| 132 | // - caller guarantees there will be no quote in the inputs |
| 133 | void WriteCsvStringRejectQuote(benchmark::State& state) { |
| 134 | auto batch = MakeStrTestBatch(kCsvRows, kCsvCols, /*quote=*/false, state.range(0)); |
| 135 | auto options = WriteOptions::Defaults(); |
| 136 | options.quoting_style = QuotingStyle::None; |
| 137 | BenchmarkWriteCsv(state, options, *batch); |
| 138 | } |
| 139 | |
| 140 | // Exercise QuotedColumnPopulator with integer |
| 141 | // - check quote even for numeric type (is it useful?) |
nothing calls this directly
no test coverage detected