(b *testing.B)
| 39 | } |
| 40 | |
| 41 | func TextSliceToString(b *testing.B) { |
| 42 | for i := 0; i < b.N; i++ { |
| 43 | textSliceToString(strs) |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | func Test_Benchmark(t *testing.T) { |
| 48 | fmt.Println("strings.Join:") |
nothing calls this directly
no test coverage detected