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