brain/config_test.go
2023-07-04 10:08:43 +08:00

13 lines
146 B
Go

package brain
import (
"log"
"testing"
)
func TestCaseMain(t *testing.T) {
cnf := Config{}
cnf.Load("config/test.yaml")
log.Println(cnf)
}