Files
gf/util/gutil/gutil_z_unit_struct_test.go

39 lines
894 B
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
2020-12-16 00:50:42 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gutil_test
import (
"testing"
2021-11-13 23:30:31 +08:00
"github.com/gogf/gf/v2/frame/g"
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/gutil"
2020-12-16 00:50:42 +08:00
)
func Test_StructToSlice(t *testing.T) {
type A struct {
K1 int
K2 string
}
gtest.C(t, func(t *gtest.T) {
a := &A{
K1: 1,
K2: "v2",
}
s := gutil.StructToSlice(a)
t.Assert(len(s), 4)
t.AssertIN(s[0], g.Slice{"K1", "K2", 1, "v2"})
t.AssertIN(s[1], g.Slice{"K1", "K2", 1, "v2"})
t.AssertIN(s[2], g.Slice{"K1", "K2", 1, "v2"})
t.AssertIN(s[3], g.Slice{"K1", "K2", 1, "v2"})
})
gtest.C(t, func(t *gtest.T) {
s := gutil.StructToSlice(1)
t.Assert(s, nil)
})
}