goProject/.svn/pristine/52/5237995ae7afcad71966e2a8f30ed0f0ee23991f.svn-base

15 lines
236 B
Plaintext
Raw Normal View History

2025-01-06 16:21:36 +08:00
package impl_console
import (
"testing"
)
func TestInfoLog(t *testing.T) {
log := NewLogger()
log.DebugLog("Debug test")
log.InfoLog("Info test")
log.WarnLog("Warn test")
log.ErrorLog("Error test")
log.FatalLog("Fatal test")
}