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