(t *testing.T)
| 1263 | } |
| 1264 | |
| 1265 | func TestNotSubsetNil(t *testing.T) { |
| 1266 | t.Parallel() |
| 1267 | |
| 1268 | mockT := new(testing.T) |
| 1269 | NotSubset(mockT, []string{"foo"}, nil) |
| 1270 | if !mockT.Failed() { |
| 1271 | t.Error("NotSubset on nil set should have failed the test") |
| 1272 | } |
| 1273 | } |
| 1274 | |
| 1275 | func Test_containsElement(t *testing.T) { |
| 1276 | t.Parallel() |