(t *testing.T)
| 173 | } |
| 174 | |
| 175 | func TestColumnIteratorPredicate(t *testing.T) { |
| 176 | for _, tc := range iterTestCases { |
| 177 | t.Run(tc.name, func(t *testing.T) { |
| 178 | testColumnIteratorPredicate(t, tc.makeIter) |
| 179 | }) |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | func testColumnIteratorPredicate(t *testing.T, makeIter makeTestIterFn) { |
| 184 | count := 10_000 |
nothing calls this directly
no test coverage detected