brain/config_test.go

13 lines
146 B
Go
Raw Normal View History

2023-07-04 02:08:43 +00:00
package brain
import (
"log"
"testing"
)
func TestCaseMain(t *testing.T) {
cnf := Config{}
cnf.Load("config/test.yaml")
log.Println(cnf)
}