英文: Running a test in golang that only works for some versions 问题 我这里有一个库(https://github.com/turtlem...
如何测试 HTTP 请求处理程序
英文: How to test http request handlers 问题 我有一组请求处理程序,就像下面这个例子: func GetProductsHandler(w http.Respons...
使用Go进行测试os.Exit场景,并提供覆盖率信息(coveralls.io/Goveralls)。
英文: Testing os.Exit scenarios in Go with coverage information (coveralls.io/Goveralls) 问题 这个问题是关于如何在...
如何在Golang中解组反射值
英文: How to unmarshal a reflect.Value in Golang 问题 我得到了这个测试 func (t *DeviceTests) CreatePublicDevice(...
`go test` CLI测试报告器的推荐
英文: Recommendation for `go test` CLI test reporter 问题 我计划使用Go语言的testing包和go test来编写单元测试。我发现go test只能...
如何模拟一个结构体,如果你直接访问它的字段。
英文: How to mock a struct if you directly access its fields 问题 我正在编写一个作为 Github API 客户端的程序。我使用 https:...
Golang测试在详细模式下运行时给出的结果不一致。
英文: Golang test gives inconsistent results when ran in verbose mode 问题 我在我的_test.go文件中有一个单独的测试函数,其中包...
“covered” 和 “not tracked” 在 Go 测试覆盖率中的含义是什么?
英文: What is the meaning of covered and not tracked in Go test coverage? 问题 我已经开始了一个小的Go应用程序来进行测试和学习。...
在Golang中模拟函数以测试我的HTTP路由。
英文: Mocking functions in Golang to test my http routes 问题 我完全困惑了,想弄清楚如何模拟一个函数,而不使用任何额外的包,比如golang/mo...
Golang测试脚本可以发出警告而不是错误吗?
英文: Can Golang test scripts issue warnings rather than errors? 问题 我有一组测试,由于外部第三方问题可能无法通过。 当出现这种情况时,我...
60