1 Star 0 Fork 1

小栈/GoEx

forked from simonxing/GoEx 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Utils_test.go 346 Bytes
一键复制 编辑 原始数据 按行查看 历史
nntaoli 提交于 2019-07-24 15:25 . [util] Fixed FloatToString bug
package goex
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestFloatToString(t *testing.T) {
assert.Equal(t, "1", FloatToString(1.10231000, 0))
assert.Equal(t, "0.102", FloatToString(0.10231000, 3))
assert.Equal(t, "1.10231", FloatToString(1.10231000, 8))
assert.NotEqual(t, "1.10231000", FloatToString(1.10231000, 8))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaozhan/GoEx.git
git@gitee.com:xiaozhan/GoEx.git
xiaozhan
GoEx
GoEx
master

搜索帮助