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