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