(a ...int)
| 106 | } |
| 107 | |
| 108 | func (i *TestExampleImplementation) TheExampleMethodVariadic(a ...int) error { |
| 109 | args := i.Called(a) |
| 110 | return args.Error(0) |
| 111 | } |
| 112 | |
| 113 | func (i *TestExampleImplementation) TheExampleMethodVariadicInterface(a ...interface{}) error { |
| 114 | args := i.Called(a) |
no test coverage detected