(format string, args ...interface{})
| 337 | } |
| 338 | |
| 339 | func (e *Expecter) Logf(format string, args ...interface{}) { |
| 340 | e.t.Helper() |
| 341 | |
| 342 | // Match regular logger timestamp format, we seem to be logging in |
| 343 | // UTC in other places as well, so match here. |
| 344 | e.t.Logf("%s: %s: %s", time.Now().UTC().Format("2006-01-02 15:04:05.000"), e.name.Load(), fmt.Sprintf(format, args...)) |
| 345 | } |
| 346 | |
| 347 | func (e *Expecter) fatalf(reason string, format string, args ...interface{}) { |
| 348 | e.t.Helper() |
no test coverage detected