(a int, b ...int)
| 117 | } |
| 118 | |
| 119 | func (i *TestExampleImplementation) TheExampleMethodMixedVariadic(a int, b ...int) error { |
| 120 | args := i.Called(a, b) |
| 121 | return args.Error(0) |
| 122 | } |
| 123 | |
| 124 | type ExampleFuncType func(string) error |
| 125 |
no test coverage detected