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