(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func Test_StringSlice_ToSlice(t *testing.T) { |
| 10 | s := NewStringSet() |
| 11 | s.Add("one") |
| 12 | s.Add("two") |
| 13 | s.Add("three") |
| 14 | s.Add("two") |
| 15 | assert.Equal(t, []string{"one", "two", "three"}, s.ToSlice()) |
| 16 | } |
| 17 | |
| 18 | func Test_StringSlice_Remove(t *testing.T) { |
| 19 | s := NewStringSet() |
nothing calls this directly
no test coverage detected