(t *testing.T)
| 212 | } |
| 213 | |
| 214 | func TestRemoveString(t *testing.T) { |
| 215 | for _, tt := range removeStringTest { |
| 216 | res := RemoveString(tt.slice, tt.item) |
| 217 | if !IsEqualIgnoreOrder(res, tt.result) { |
| 218 | t.Errorf("RemoveString expected: %#v, got: %#v", tt.result, res) |
| 219 | } |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | func TestSliceContains(t *testing.T) { |
| 224 | for _, tt := range sliceContaintsTest { |
nothing calls this directly
no test coverage detected