/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
util/gutil/gutil_z_unit_struct_test.go
38 строк
894 B
houseme
Improved import, by group improt.
13 ноя 2021, 18:30
13 ноя 2021, 18:30
d864120
Код
Авторство
О чём код?
// 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 ( "testing" "github.com/gogf/gf/v2/frame/g" "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) }) }