英文: Why does benbjohnson/clock mock timer not execute when declared inside a goroutine? 问题 这段代码按照我的预...
如何在用例中循环测试Go Mock Repository?
英文: How to test Go Mock Repository inside loop on usecase 问题 我有一个使用testify进行存储库模拟数据库测试的问题。 我想要测试一个服务...
为什么在使用`go test`时,`WaitGroup.Wait()`会出现阻塞?
英文: Why is WaitGroup.Wait() hanging when using it with go test? 问题 这是一个简单的示例,展示了我所说的情况。当我运行这段代码时,我得到...
如何在Go测试用例中处理JSON语法错误?
英文: How to handle json syntax error in a go test case? 问题 我正在测试一个场景,其中json.Unmarshal失败并返回 &json....
如何将https://github.com/go-test/deep导入到您的Golang测试中
英文: How to Import https://github.com/go-test/deep into Your Golang Test 问题 我是你的中文翻译助手,以下是翻译好的内容: 我对G...
Golang:在调用Init方法之前模拟一个接口方法。
英文: Golang: Mock an interface method before Init method is called 问题 如何模拟在包的init()方法中调用的内容? 例如: main...
我可以从TestMain输出日志消息吗?
英文: Can I output log messages from TestMain? 问题 我想编写一个集成测试,测试将数据写入和从数据库中读取的功能。为了做到这一点,我需要我的第一个测试函数连接...
测试模式(test mode)在Gin中的用途是什么?
英文: What is the use of test mode in Gin 问题 我已经查看了文档,但它没有解释如何使用 gin 的测试模式。 gin.SetMode(gin.TestMode) ...
如何传递参数来运行测试代码?
英文: How do I pass arguments to run the test code 问题 我有两个文件main.go和main_test.go 在main.go中: package ma...
期望不匹配:Golang单元测试错误
英文: Expectations unmatched : Golang unit test error 问题 我是你的中文翻译助手,以下是你要翻译的内容: 我是Golang的新手,当我尝试运行下面的测...
5