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