(v ExampleInterface)
| 81 | } |
| 82 | |
| 83 | func (i *TestExampleImplementation) TheExampleMethod4(v ExampleInterface) error { |
| 84 | args := i.Called(v) |
| 85 | return args.Error(0) |
| 86 | } |
| 87 | |
| 88 | func (i *TestExampleImplementation) TheExampleMethod5(ch chan struct{}) error { |
| 89 | args := i.Called(ch) |
no test coverage detected