add more test case for reflect

This commit is contained in:
c9s 2022-06-29 18:41:13 +08:00
parent fa917b0b77
commit a74decc47d
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -48,4 +48,19 @@ func Test_reflectMergeStructFields(t *testing.T) {
reflectMergeStructFields(b, a) reflectMergeStructFields(b, a)
assert.Equal(t, types.IntervalWindow{Interval: types.Interval5m, Window: 9}, b.IntervalWindow) assert.Equal(t, types.IntervalWindow{Interval: types.Interval5m, Window: 9}, b.IntervalWindow)
}) })
t.Run("skip different type but the same name", func(t *testing.T) {
a := &struct {
A float64
}{
A: 1.99,
}
b := &struct {
A string
}{}
reflectMergeStructFields(b, a)
assert.Equal(t, "", b.A)
assert.Equal(t, 1.99, a.A)
})
} }