英文: GO Unit testing structured REST API projects 问题 我正在尝试为我已经创建的REST API编写良好的单元测试。我有这样一个简单的结构: ROOT/...
测试基于gin的REST API,在使用net/http/httptest时无法获取参数。
英文: Testing gin based REST API not getting params while using net/http/httptest 问题 我正在开发一个基于Gin Go的R...
有条件地使用构建标志运行测试不起作用。
英文: conditionally running tests with build flags not working 问题 我正在运行一些 Golang 的测试,并且我想避免运行那些慢的测试,例如...
为Go应用程序创建TravisCI配置以进行自动化测试
英文: Creating a TravisCI config for automated testing of a Go application 问题 我想创建一个.travis.yml配置文件,实现...
在使用竞争检测器时,我可以跳过特定的测试吗?
英文: Can I skip a specific test when using the race detector? 问题 Go Race Detector的goroutine限制是8192(至少...
Golang测试中的固定装置
英文: Fixtures in Golang testing 问题 从Python世界来看,fixtures非常有用(fixtures为可重用状态/支持逻辑定义了Python的契约,主要用于单元测试)...
Go测试调试
英文: Go tests debugging 问题 有没有办法在使用像IntelliJ这样的IDE中调试Go的测试?我正在使用IntelliJ的Go插件,但是当提供调试配置时,调试按钮是禁用的。 英文...
Golang NewRequest将POST参数传递给API进行测试
英文: Golang NewRequest passing POST parameter to the API for testing 问题 这是我的测试方法,它创建一个新的请求并传递POST参数。 ...
Golang测试使用通道不退出。
英文: Golang test with channels does not exit 问题 以下是翻译好的内容: 以下的Golang测试永远不会退出。我怀疑这与通道死锁有关,但作为一个Go新手,我不...
如何处理用于 CLI 测试的 “fmt” Golang 库包?
英文: how to deal with the "fmt" golang library package for CLI testing 问题 免责声明:祝您圣诞快乐,希望我的问...
60