micro/util/log/log_test.go

14 lines
144 B
Go
Raw Normal View History

package log
import (
"testing"
)
func TestDebug(t *testing.T) {
SetLevel(LevelDebug)
Debug(123)
}
func TestMain(m *testing.M) {
m.Run()
}