math_test.go 203 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package utils import "testing" func TestDecimal(t *testing.T) { t.Log(Decimal(1.7999999)) t.Log(Decimal(1.7444444)) t.Log(Decimal(1.7555555)) t.Log(Decimal(1.3555555)) t.Log(Decimal(1.3000001)) }