Mock testing.T implementation for testing
| 584 | |
| 585 | // Mock testing.T implementation for testing |
| 586 | type mockTestingT struct { |
| 587 | failed bool |
| 588 | fataled bool |
| 589 | errorMsg string |
| 590 | fatalMsg string |
| 591 | } |
| 592 | |
| 593 | func (m *mockTestingT) Helper() {} |
| 594 |
nothing calls this directly
no outgoing calls
no test coverage detected