Ejemplo n.º 1
0
func TestStringSliceJoin(t *testing.T) {
	l := utils.StringSlice{"a", "b"}
	assert.Equal(t, "a,b", l.Join(","))
}