(t *testing.T)
| 1206 | } |
| 1207 | |
| 1208 | func TestNotSubsetNil(t *testing.T) { |
| 1209 | mockT := new(testing.T) |
| 1210 | NotSubset(mockT, []string{"foo"}, nil) |
| 1211 | if !mockT.Failed() { |
| 1212 | t.Error("NotSubset on nil set should have failed the test") |
| 1213 | } |
| 1214 | } |
| 1215 | |
| 1216 | func Test_containsElement(t *testing.T) { |
| 1217 |