TestExampleImplementation is a test implementation of ExampleInterface
| 25 | |
| 26 | // TestExampleImplementation is a test implementation of ExampleInterface |
| 27 | type TestExampleImplementation struct { |
| 28 | Mock |
| 29 | } |
| 30 | |
| 31 | func (i *TestExampleImplementation) TheExampleMethod(a, b, c int) (int, error) { |
| 32 | args := i.Called(a, b, c) |
nothing calls this directly
no outgoing calls
no test coverage detected