(format string, args ...any)
| 30 | } |
| 31 | |
| 32 | func (self *FakeFieldLogger) Errorf(format string, args ...any) { |
| 33 | msg := fmt.Sprintf(format, args...) |
| 34 | self.loggedErrors = append(self.loggedErrors, msg) |
| 35 | } |
| 36 | |
| 37 | func (self *FakeFieldLogger) AssertErrors(t *testing.T, expectedErrors []string) { |
| 38 | t.Helper() |