TestingT is an interface wrapper around *testing.T
| 23 | |
| 24 | // TestingT is an interface wrapper around *testing.T |
| 25 | type TestingT interface { |
| 26 | Logf(format string, args ...interface{}) |
| 27 | Errorf(format string, args ...interface{}) |
| 28 | FailNow() |
| 29 | } |
| 30 | |
| 31 | /* |
| 32 | Call |
no outgoing calls
no test coverage detected