| 148 | } |
| 149 | |
| 150 | static void ChunkCSVStocksExample( |
| 151 | benchmark::State& state) { // NOLINT non-const reference |
| 152 | auto options = ParseOptions::Defaults(); |
| 153 | options.newlines_in_values = true; |
| 154 | |
| 155 | BenchmarkCSVChunking(state, stocks_example, options); |
| 156 | } |
| 157 | |
| 158 | static void BenchmarkCSVParsing(benchmark::State& state, // NOLINT non-const reference |
| 159 | const std::string& csv, int32_t num_rows, |
nothing calls this directly
no test coverage detected