10 Star 43 Fork 10

gohouse/gorose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util_test.go 807 Bytes
一键复制 编辑 原始数据 按行查看 历史
yy 提交于 2019-07-12 13:54 . typo func name
package gorose
import (
"github.com/gohouse/gocar/varBindValue"
"reflect"
"testing"
"time"
)
func TestStructToMap(t *testing.T) {
user := Users{Uid: 1, Name: "gorose"}
data := StructToMap(user)
t.Log(data)
}
func TestIf(t *testing.T) {
closer := func() {
time.Sleep(1 * time.Second)
}
withRunTimeContext(closer, func(td time.Duration) {
t.Log("用时:", td, td.Seconds() > 1)
})
}
func TestStructToMap2(t *testing.T) {
var u Users
//res := structForScan(&u)
res := structForScan(reflect.ValueOf(&u).Interface())
for _, item := range res {
err := varBindValue.BindVal(item, 1234)
if err != nil {
t.Error(err.Error())
}
}
t.Log(res, u)
}
func Test_getRandomInt(t *testing.T) {
t.Log(getRandomInt(2))
t.Log(getRandomInt(3))
t.Log(getRandomInt(2))
t.Log(getRandomInt(3))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/gohouse/gorose.git
git@gitee.com:gohouse/gorose.git
gohouse
gorose
gorose
master

搜索帮助