Files
micro/util/log/log_test.go
2020-07-29 12:45:25 +01:00

14 lines
144 B
Go

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