* Test objects */ ExampleInterface represents an example interface.
| 19 | |
| 20 | // ExampleInterface represents an example interface. |
| 21 | type ExampleInterface interface { |
| 22 | TheExampleMethod(a, b, c int) (int, error) |
| 23 | } |
| 24 | |
| 25 | // TestExampleImplementation is a test implementation of ExampleInterface |
| 26 | type TestExampleImplementation struct { |
no outgoing calls
no test coverage detected