conf_test.go 190 B

123456789101112
  1. package conf
  2. import "testing"
  3. func TestInitConfig(t *testing.T) {
  4. err := InitConfig("./conf.yaml")
  5. if err != nil {
  6. t.Fatal(err)
  7. }
  8. t.Log(conf.EthRpcAddrs)
  9. t.Log(conf.TronRpcAddrs)
  10. }