(t *testing.T)
| 1136 | } |
| 1137 | |
| 1138 | func TestNotSubsetNil(t *testing.T) { |
| 1139 | mockT := new(testing.T) |
| 1140 | NotSubset(mockT, []string{"foo"}, nil) |
| 1141 | if !mockT.Failed() { |
| 1142 | t.Error("NotSubset on nil set should have failed the test") |
| 1143 | } |
| 1144 | } |
| 1145 | |
| 1146 | func Test_containsElement(t *testing.T) { |
| 1147 |