英文: How to correctly cover all golang packages with all tests? 问题 假设有一些代码定义在pkg/somepkg1包下面。 在这个包中有一...
在测试时解决 Golang 中的循环导入错误
英文: hex-arc golang - overcome import cycling error when testing 问题 我在测试我的Go项目中的foo_handler时遇到了问题。我的项...
How to run `go test` in the parent directory of multiple go modules and return non-zero in case of error
英文: How to run `go test` in the parent directory of multiple go modules and return non-zero in case ...
Go test命令中的”-run -“标志可以更快地执行测试。
英文: Go test "-run -" flag executed tests much faster 问题 我正在查看来自https://github.com/RoaringB...
如何使用gomock使模拟函数在连续调用时返回不同的结果?
英文: How to use gomock to make a mocked function return different results on subsequent calls? 问题 我正在...
How to write unit test when a member function is calling another member function of the same object in golang?
英文: How to write unit test when a member function is calling another member function of the same obj...
当使用数据库事务时,如何编写单元测试?
英文: How to write unit test when using db transaction? 问题 在你的项目中使用MySQL事务时,你想知道如何编写数据库事务的单元测试。例如: fun...
如何告诉Gazelle一个go文件是用于go_default_test而不是go_default_library?
英文: How to tell gazelle that a go file is meant for go_default_test and not go_default_library? 问题 我...
你如何在你的 Golang 代码中测试 filepath.Abs 失败的情况?
英文: How do you test filepath.Abs failure in your Golang code? 问题 在我的Go代码中,我不得不多次使用filepath.Abs(),这可能...
在Kubernetes的发现接口中,`discoveryfake`是如何定义的?
英文: Where is the discoveryfake defined in k8s discovery interface? 问题 在我阅读关于如何在k8s上使用虚假客户端进行测试的这个链接时...