Implementsf asserts that an object is implemented by the specified interface. a.Implementsf((*MyInterface)(nil), new(MyObject), "error message %s", "formatted")
(interfaceObject interface{}, object interface{}, msg string, args ...interface{})
| 697 | // |
| 698 | // a.Implementsf((*MyInterface)(nil), new(MyObject), "error message %s", "formatted") |
| 699 | func (a *Assertions) Implementsf(interfaceObject interface{}, object interface{}, msg string, args ...interface{}) { |
| 700 | if h, ok := a.t.(tHelper); ok { |
| 701 | h.Helper() |
| 702 | } |
| 703 | Implementsf(a.t, interfaceObject, object, msg, args...) |
| 704 | } |
| 705 | |
| 706 | // InDelta asserts that the two numerals are within delta of each other. |
| 707 | // |
nothing calls this directly
no test coverage detected