(t *testing.T)
| 27 | ) |
| 28 | |
| 29 | func Test_textSliceToString(t *testing.T) { |
| 30 | a := textSliceToString(strs) |
| 31 | b := Join(strs) |
| 32 | assert.Equal(t, a, b) |
| 33 | } |
| 34 | |
| 35 | func StringsJoin(b *testing.B) { |
| 36 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected