goProject/trunk/goutil/yamlUtil/load_test.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

15 lines
212 B
Go

package yamlUtil
import (
"fmt"
"goutil/jsonUtil"
"testing"
)
func TestLoadYaml(t *testing.T) {
config, _ := LoadFromFile("config.yaml")
configStr, _ := jsonUtil.DeepClone(config)
fmt.Print(configStr)
}