(tb testing.TB)
| 72 | } |
| 73 | |
| 74 | func newMockTestingT(tb testing.TB) *mockTestingT { |
| 75 | tb.Helper() |
| 76 | return &mockTestingT{tb: tb} |
| 77 | } |
| 78 | |
| 79 | func (t *mockTestingT) Errorf(format string, args ...any) {} |
| 80 | func (t *mockTestingT) FailNow() { t.failed.Store(true) } |
no test coverage detected
searching dependent graphs…