mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
39 lines
894 B
Go
Executable File
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)
|
|
})
|
|
}
|