conn_ini__test.go 212 B

1234567891011121314151617
  1. package conf
  2. import (
  3. "testing"
  4. )
  5. // 读取配置文件
  6. func Test_ConnIni(t *testing.T) {
  7. conf, err := ConnIni()
  8. if err != nil {
  9. t.Error(err)
  10. } else {
  11. t.Log(conf.MustValue("ubrSet", "ubr_host"))
  12. }
  13. }