(b *testing.B)
| 923 | } |
| 924 | |
| 925 | func BenchmarkExtendReuseSlice(b *testing.B) { |
| 926 | in := []int{1, 2, 3} |
| 927 | for i := 0; i < b.N; i++ { |
| 928 | _ = extendReuseSlice(100, in) |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | var benchmarkTrace *Trace |
| 933 |
nothing calls this directly
no test coverage detected