diff --git a/config/reflect_test.go b/config/reflect_test.go deleted file mode 100644 index 2a2baee3..00000000 --- a/config/reflect_test.go +++ /dev/null @@ -1,26 +0,0 @@ -package config_test - -import ( - "testing" - - rutil "github.com/unistack-org/micro/v3/util/reflect" -) - -type Config struct { - SubConfig *SubConfig - Config *Config - Value string -} - -type SubConfig struct { - Value string -} - -func TestReflect(t *testing.T) { - cfg1 := &Config{Value: "cfg1", Config: &Config{Value: "cfg1_1"}, SubConfig: &SubConfig{Value: "cfg1"}} - cfg2, err := rutil.Zero(cfg1) - if err != nil { - t.Fatal(err) - } - t.Logf("dst: %#+v\n", cfg2) -}