(et *ExampleType)
| 77 | } |
| 78 | |
| 79 | func (i *TestExampleImplementation) TheExampleMethod3(et *ExampleType) error { |
| 80 | args := i.Called(et) |
| 81 | return args.Error(0) |
| 82 | } |
| 83 | |
| 84 | func (i *TestExampleImplementation) TheExampleMethod4(v ExampleInterface) error { |
| 85 | args := i.Called(v) |
no test coverage detected