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