Files
utils/loggerx/loggerx_test.go
T
2023-09-16 20:14:20 +08:00

20 lines
239 B
Go

package loggerx_test
import (
"context"
"testing"
"yunink/app/pkg/loggerx"
)
// func TestMain(m *testing.M) {
// }
func TestLogger(t *testing.T) {
l := loggerx.InitLogger("profix")
l.Error(context.Background(), "test error")
}