(t *testing.T)
| 142 | } |
| 143 | |
| 144 | func TestOrdone(t *testing.T) { |
| 145 | if skipUseless { |
| 146 | t.Skip("skipping useless approach") |
| 147 | } |
| 148 | testIterator(t, func(ap *shape.AP) Iterator { return ordone.NewIterator(ap) }) |
| 149 | } |
| 150 | |
| 151 | func BenchmarkOrdone(b *testing.B) { |
| 152 | if skipUseless { |
nothing calls this directly
no test coverage detected