()
| 30 | } |
| 31 | |
| 32 | func newTestReporterMock() *testReporterMock { |
| 33 | return &testReporterMock{errors: make([]string, 0)} |
| 34 | } |
| 35 | |
| 36 | func (trm *testReporterMock) Errorf(format string, args ...any) { |
| 37 | trm.errors = append(trm.errors, fmt.Sprintf(format, args...)) |
no outgoing calls
no test coverage detected