英文: Check tests compile without running them or creating a binary 问题 使用Go语言,我如何检查我的测试代码是否能够编译通过,而不生成...
使用`go test`命令在第一个测试失败时停止。
英文: Stop on first test failure with `go test` 问题 如何在第一个测试失败后停止go test several/packages/...命令的执行? 尽管已...
在Go语言中比较多个结构字段
英文: Comparing multiple struct fields in Go 问题 我想知道是否有一种通用的方法来对一个相当大的结构体进行单元测试,而不必写很多连续的if语句。我知道在Go语言...
测试依赖于动态URL的Go处理程序函数。
英文: Testing Handler Function that relies on a dynamic URL in Go 问题 我一直在寻找答案,但找不到。我的问题是,是否有可能测试一个依赖于动...
执行Go测试时,将下划线(_)替换为正确的路径。
英文: Executing Go Tests Underscore (_) in place of correct path 问题 感谢您的帮助。 在我的Mac上,当我执行go test ./...命...
将POST变量添加到Go测试的HTTP请求中。
英文: Adding POST variables to Go test http Request 问题 我正在尝试将表单变量添加到Go的HTTP请求中。 这是我的Go测试代码: func sampl...
Go Martini单元测试示例
英文: Go Martini Unit Test Example 问题 我很新手Go语言,想知道有没有关于如何测试Go Martini的处理程序代码的约定/标准?提前感谢你! 英文: I'm very...
`go test` for package fails but individually test run fine, and package compiles fine
英文: `go test` for package fails but individually test run fine, and package compiles fine 问题 当我执行go ...
如何在Golang的单元测试中测试net.Conn?
英文: How does one test net.Conn in unit tests in Golang? 问题 我目前正在研究如何为Go语言中的net.Conn接口创建一些单元测试,以及构建在该...
在Go中进行无需休眠的异步结果测试
英文: Testing for asynchronous results without sleep in Go 问题 我在我的代码中有很多组件,它们有持久的go-routines来监听事件并触发操作...
70