(b *testing.B)
| 13 | } |
| 14 | |
| 15 | func benchSub2(b *testing.B) { |
| 16 | for i := 0; i < b.N; i++ { |
| 17 | gotest.MakeSliceWithoutAlloc() |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func benchSub3(b *testing.B) { |
| 22 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected