(t *testing.T)
| 98 | } |
| 99 | |
| 100 | func TestNewStdLog(t *testing.T) { |
| 101 | withLogger(t, DebugLevel, []Option{AddCaller()}, func(l *Logger, logs *observer.ObservedLogs) { |
| 102 | std := NewStdLog(l) |
| 103 | std.Print("redirected") |
| 104 | checkStdLogMessage(t, "redirected", logs) |
| 105 | }) |
| 106 | } |
| 107 | |
| 108 | func TestNewStdLogAt(t *testing.T) { |
| 109 | // include DPanicLevel here, but do not include Development in options |
nothing calls this directly
no test coverage detected