func TestStringSliceSort(t *testing.T) { l := utils.StringSlice{"c", "a", "z", "b"} assert.Equal(t, "a,b,c,z", l.Sort().Join(",")) }