Эх сурвалжийг харах

add more tests for service (#463)

Kevin Wan 4 жил өмнө
parent
commit
80e1c85b50

+ 18 - 0
core/service/serviceconf_test.go

@@ -0,0 +1,18 @@
+package service
+
+import (
+	"testing"
+
+	"github.com/tal-tech/go-zero/core/logx"
+)
+
+func TestServiceConf(t *testing.T) {
+	c := ServiceConf{
+		Name: "foo",
+		Log: logx.LogConf{
+			Mode: "console",
+		},
+		Mode: "dev",
+	}
+	c.MustSetUp()
+}