goProject/trunk/goutil/logUtil/impl-console/logger_test.go

15 lines
236 B
Go
Raw Permalink Normal View History

2025-01-06 16:01:02 +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")
}