add more tests for service (#463)
parent
395a1db22f
commit
80e1c85b50
@ -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()
|
||||||
|
}
|
Loading…
Reference in New Issue