NotImplements asserts that an object does not implement the specified interface. a.NotImplements((*MyInterface)(nil), new(MyObject))
(interfaceObject interface{}, object interface{}, msgAndArgs ...interface{})
| 1222 | // |
| 1223 | // a.NotImplements((*MyInterface)(nil), new(MyObject)) |
| 1224 | func (a *Assertions) NotImplements(interfaceObject interface{}, object interface{}, msgAndArgs ...interface{}) bool { |
| 1225 | if h, ok := a.t.(tHelper); ok { |
| 1226 | h.Helper() |
| 1227 | } |
| 1228 | return NotImplements(a.t, interfaceObject, object, msgAndArgs...) |
| 1229 | } |
| 1230 | |
| 1231 | // NotImplementsf asserts that an object does not implement the specified interface. |
| 1232 | // |
nothing calls this directly
no test coverage detected