(t *testing.T)
| 109 | } |
| 110 | |
| 111 | func TestColumnIterator(t *testing.T) { |
| 112 | for _, tc := range iterTestCases { |
| 113 | t.Run(tc.name, func(t *testing.T) { |
| 114 | testColumnIterator(t, tc.makeIter) |
| 115 | }) |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | func testColumnIterator(t *testing.T, makeIter makeTestIterFn) { |
| 120 | count := 100_000 |
nothing calls this directly
no test coverage detected