NotSubsetf asserts that the specified list(array, slice...) or map does NOT contain all elements given in the specified subset list(array, slice...) or map. a.NotSubsetf([1, 3, 4], [1, 2], "error message %s", "formatted") a.NotSubsetf({"x": 1, "y": 2}, {"z": 3}, "error message %s", "formatted")
(list interface{}, subset interface{}, msg string, args ...interface{})
| 1346 | // a.NotSubsetf([1, 3, 4], [1, 2], "error message %s", "formatted") |
| 1347 | // a.NotSubsetf({"x": 1, "y": 2}, {"z": 3}, "error message %s", "formatted") |
| 1348 | func (a *Assertions) NotSubsetf(list interface{}, subset interface{}, msg string, args ...interface{}) bool { |
| 1349 | if h, ok := a.t.(tHelper); ok { |
| 1350 | h.Helper() |
| 1351 | } |
| 1352 | return NotSubsetf(a.t, list, subset, msg, args...) |
| 1353 | } |
| 1354 | |
| 1355 | // NotZero asserts that i is not the zero value for its type. |
| 1356 | func (a *Assertions) NotZero(i interface{}, msgAndArgs ...interface{}) bool { |
nothing calls this directly
no test coverage detected