(fn func(string) error)
| 102 | } |
| 103 | |
| 104 | func (i *TestExampleImplementation) TheExampleMethodFunc(fn func(string) error) error { |
| 105 | args := i.Called(fn) |
| 106 | return args.Error(0) |
| 107 | } |
| 108 | |
| 109 | func (i *TestExampleImplementation) TheExampleMethodVariadic(a ...int) error { |
| 110 | args := i.Called(a) |
no test coverage detected