(t *testing.T)
| 170 | } |
| 171 | |
| 172 | func TestPremul(t *testing.T) { |
| 173 | if skipUseless { |
| 174 | t.Skip("skipping useless approach") |
| 175 | } |
| 176 | testIterator(t, func(ap *shape.AP) Iterator { return premul.NewIterator(ap) }) |
| 177 | } |
| 178 | |
| 179 | func BenchmarkPremul(b *testing.B) { |
| 180 | if skipUseless { |
nothing calls this directly
no test coverage detected