(b *testing.B)
| 236 | } |
| 237 | |
| 238 | func BenchmarkColumnIterator(b *testing.B) { |
| 239 | for _, tc := range iterTestCases { |
| 240 | b.Run(tc.name, func(b *testing.B) { |
| 241 | benchmarkColumnIterator(b, tc.makeIter) |
| 242 | }) |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | func benchmarkColumnIterator(b *testing.B, makeIter makeTestIterFn) { |
| 247 | count := 100_000 |
nothing calls this directly
no test coverage detected