英文: how to test the result in goroutine without wait in test 问题 当我在使用golang时,有时候需要在goroutine中测试结果,我之...
Gogland测试配置始终使用./执行。
英文: Gogland Test Configuration always executed with ./ 问题 无论我如何设置构建配置来运行我的测试,go test工具总是使用./...运行。 例...
`assert_called_once()`和`assert_called_xyz()`等价吗?
英文: assert_called_once() or assert_called_xyz().... equivalent? 问题 对于在测试中断言伪造/模拟方法被调用的次数,对我来说很重要,我想知...
`go test`命令中的`-parallel`和`-test.parallel`两个标志,哪个标志优先生效?
英文: go test `-parallel` vs `-test.parallel` which flag gets precedence? 问题 go test命令的两个标志-parallel和-...
使用chromedp启动具有特定用户配置文件的浏览器。
英文: start browser with specicfic user profile using chromedp 问题 我正在使用Python的Selenium,并且可以使用它完成所有的测试工...
Testing log.Fatalf in go?
英文: Testing log.Fatalf in go? 问题 我想在Go代码中实现100%的测试覆盖率。我无法覆盖以下示例 - 有人可以帮我解决这个问题吗? package example imp...
如何在Go测试中测试连接是否泄漏?
英文: How to test for leaking connections in a Go test? 问题 在我找到程序中的漏洞后,我解决了这个问题。然而,现在我正在尝试找出如何在Go测试中&q...
在涉及全局变量的不同包中同步测试的最佳方法是什么?
英文: What is the best way to synchronize tests in different packages which involve with a global vari...
使用testify mock进行表驱动测试
英文: Table driven tests with testify mock 问题 有没有使用testify编写干净的表驱动测试的示例?对于输入和预期输出的表驱动测试很好用,但是测试来自依赖项的输...
如何在单元测试中处理New Server函数。
英文: how to handle New Server func in unit testing 问题 对于我来说,单元测试有一定的工作量,所以我使用gotests来生成样板测试代码。 server...
60