英文: How to suppress [no test files] message on go test 问题 我正在项目的根目录下运行go test ./...命令,但是有几个包没有任何测试,并...
如何使用相对目录测试Go程序?
英文: How to test Go programs with relative directories? 问题 根据测试文档: “该软件包是在临时目录中构建的,因此不会干扰非测试安装。” 因此,与...
How to do mock a function using gomock in Go?
英文: How to do mock a function using gomock in Go? 问题 我是你的中文翻译助手,以下是翻译好的内容: 我刚开始学习Go语言,正在做一个小的简单项目,并且...
In Go when using the Example… testing method is there a way to have it show a diff instead of got… want…?
英文: In Go when using the Example... testing method is there a way to have it show a diff instead of ...
在Go语言中测试具有相同内容的映射是否等价时,测试失败了。
英文: Testing equivalence of maps in Go with the same contents, but the test failed 问题 这是一个在Go语言中的单词计数...
在Go测试中处理命令行参数
英文: Process command line arguments in go test 问题 在Go语言的测试中,有没有办法获取命令行参数? 当你调用go test时,显然不会运行main函数,所...
如何在Go中模拟对`ioutil.ReadFile`的调用?
英文: How would I mock a call to ioutil.ReadFile in go? 问题 我有以下函数: func ObtainTranslationStringsFile(p...
在GO中进行并发编程测试
英文: Concurrent programming test in GO 问题 我正在尝试确保我的并发程序不会出现以下问题: 死锁(deadlock) 活锁(livelock) 饥饿(starvat...
在golang应用程序中组织测试并避免导入循环问题。
英文: Organizing tests in golang application and avoiding import cycles hell 问题 我目前遇到了一个关于应用程序结构和测试基础设...
如何查看Go程序测试代码的堆栈跟踪?
英文: How to see stack trace of test code of Go program? 问题 我使用Go的原生测试工具(go test)编写测试。但是当测试由于测试代码中的错误而...
60