(fn ExampleFuncType)
| 124 | type ExampleFuncType func(string) error |
| 125 | |
| 126 | func (i *TestExampleImplementation) TheExampleMethodFuncType(fn ExampleFuncType) error { |
| 127 | args := i.Called(fn) |
| 128 | return args.Error(0) |
| 129 | } |
| 130 | |
| 131 | // MockTestingT mocks a test struct |
| 132 | type MockTestingT struct { |
no test coverage detected