(t *testing.T)
| 114 | } |
| 115 | |
| 116 | func TestInstruct(t *testing.T) { |
| 117 | if skipUseless { |
| 118 | t.Skip("skipping useless approach") |
| 119 | } |
| 120 | testIterator(t, func(ap *shape.AP) Iterator { return instruct.NewIterator(ap) }) |
| 121 | } |
| 122 | |
| 123 | func BenchmarkInstruct(b *testing.B) { |
| 124 | if skipUseless { |
nothing calls this directly
no test coverage detected