(format string, args ...any)
| 83 | } |
| 84 | |
| 85 | func (lc *logCapturingT) Errorf(format string, args ...any) { |
| 86 | lc.Helper() |
| 87 | lc.T.Errorf(format, args...) |
| 88 | lc.writeToFile("ERROR: "+format+"\n", args...) |
| 89 | } |
| 90 | |
| 91 | func (lc *logCapturingT) Fatal(args ...any) { |
| 92 | lc.Helper() |