Args is required. The arguments to be provided to the method. If there are no arguments, pass an empty list: 'm.Args()' The first context argument should not be included, as the test suite will provide it.
(args ...any)
| 465 | // The first context argument should not be included, as the test suite |
| 466 | // will provide it. |
| 467 | func (m *expects) Args(args ...any) *expects { |
| 468 | m.inputs = values(args...) |
| 469 | return m |
| 470 | } |
| 471 | |
| 472 | // Returns is optional. If it is never called, it will not be asserted. |
| 473 | func (m *expects) Returns(rets ...any) *expects { |
no test coverage detected