1 Star 2 Fork 0

钱纯净/go方法

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
init_test.go 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
钱纯净 提交于 2022-08-27 20:02 . 优化
package cfg
import (
"testing"
"time"
)
func TestNew(t *testing.T) {
//New("./config/config.json")
//NewString(`{"A":2}`)
//cfg := New("./config/config.json")
t.Log(GetString("A", "默认"))
t.Log(GetString("A[0]", "默认"))
t.Log(GetString("A[1]", "默认"))
t.Log(GetString("A[2]", "默认"))
t.Log(GetString("A[0].", "默认"))
//return
t.Log(GetInt64("年龄", 8))
t.Log(GetInt("年龄", 8))
t.Log(GetInts("年龄", []int{8}))
t.Log(GetInt64s("年龄", []int64{8}))
t.Log(GetFloat64("年龄", 8))
t.Log(GetFloat32("年龄", 8))
t.Log(GetFloat32("体重", 8))
t.Log(GetInt("体重", 8))
t.Log(GetBool("l"))
t.Log(GetSecond("l"))
t.Log(time.Duration(0))
t.Log(time.ParseDuration("1m2m"))
t.Log(Default.Value)
t.Log(GetString("体重", "666"))
t.Log(GetString("l", "666"))
t.Log(GetString("年龄", "666"))
t.Log(GetString("A1"))
t.Log(GetString("B"))
t.Log(GetStrings("A"))
t.Log(GetStrings("C"))
t.Log(GetStrings("C[2]"))
t.Log(GetStrings("C[0]"))
t.Log(GetString("D.x"))
t.Log(GetStrings("D.x"))
t.Log(GetString("level.level1.level2.level3"))
t.Log(GetString("level.level1.level2"))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/injoyai/goutil.git
[email protected]:injoyai/goutil.git
injoyai
goutil
go方法
master

搜索帮助