Exercises UnQuotedColumnPopulator with integer
| 112 | |
| 113 | // Exercises UnQuotedColumnPopulator with integer |
| 114 | void WriteCsvNumeric(benchmark::State& state) { |
| 115 | auto batch = MakeIntTestBatch(kCsvRows, kCsvCols, state.range(0)); |
| 116 | BenchmarkWriteCsv(state, WriteOptions::Defaults(), *batch); |
| 117 | } |
| 118 | |
| 119 | // Exercise QuotedColumnPopulator with string (without quote) |
| 120 | void WriteCsvStringNoQuote(benchmark::State& state) { |
nothing calls this directly
no test coverage detected