(t *testing.T)
| 308 | } |
| 309 | |
| 310 | func TestOnearrPremul(t *testing.T) { |
| 311 | if skipUseless { |
| 312 | t.Skip("skipping useless approach") |
| 313 | } |
| 314 | testIterator(t, func(ap *shape.AP) Iterator { return onearrpremul.NewIterator(ap) }) |
| 315 | } |
| 316 | |
| 317 | func BenchmarkOnearrPremul(b *testing.B) { |
| 318 | if skipUseless { |
nothing calls this directly
no test coverage detected