new_config_func_test.go 221 B

1234567891011121314
  1. package conf
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestGetStringV2(t *testing.T) {
  7. MustValue = func(section, key string, defaultVal ...string) string {
  8. fmt.Println(section, key)
  9. return ""
  10. }
  11. GetStringV2("k1.k2.k3")
  12. }