2024-01-25 03:50PM
参考:http://siwei.me/blog/posts/go-unit-test
https://github.com/stretchr/testify/#installation
1. 配置 go.mod 文件(参考:go - go.mod 文件)
2. 安装 Testify
go get github.com/stretchr/testify
3. 引入
package yours
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSomething(t *testing.T) {
assert.True(t, true, "True is true!")
}
4. 运行测试(在包含单元测试的文件夹下面运行)
go test
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论