gf/util/gutil/gutil_z_unit_struct_test.go
2021-10-11 21:41:56 +08:00

39 lines
894 B
Go
Executable File

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// 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 (
"github.com/gogf/gf/v2/frame/g"
"testing"
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/gutil"
)
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)
})
}