AssertionTesterInterface defines an interface to be used for testing assertion methods
| 87 | |
| 88 | // AssertionTesterInterface defines an interface to be used for testing assertion methods |
| 89 | type AssertionTesterInterface interface { |
| 90 | TestMethod() |
| 91 | } |
| 92 | |
| 93 | // AssertionTesterConformingObject is an object that conforms to the AssertionTesterInterface interface |
| 94 | type AssertionTesterConformingObject struct{} |
nothing calls this directly
no outgoing calls
no test coverage detected