Exercise QuotedColumnPopulator with integer - check quote even for numeric type (is it useful?)
| 140 | // Exercise QuotedColumnPopulator with integer |
| 141 | // - check quote even for numeric type (is it useful?) |
| 142 | void WriteCsvNumericCheckQuote(benchmark::State& state) { |
| 143 | auto batch = MakeIntTestBatch(kCsvRows, kCsvCols, state.range(0)); |
| 144 | auto options = WriteOptions::Defaults(); |
| 145 | options.quoting_style = QuotingStyle::AllValid; |
| 146 | BenchmarkWriteCsv(state, options, *batch); |
| 147 | } |
| 148 | |
| 149 | void NullPercents(benchmark::internal::Benchmark* bench) { |
| 150 | std::vector<int> null_percents = {0, 1, 10, 50}; |
nothing calls this directly
no test coverage detected