英文: How to test for infinite loop/recursion with ginkgo/gomega? 问题 我有一个使用golang编写的函数,它递归地遍历一个JSON字符串...
Go测试覆盖率 – Go工具无法识别err != nil的返回值
英文: Go Test Coverage - Go Tool Not Recognize err != nil returns 问题 我正在学习关于在Golang中进行测试覆盖率的一些内容,并遇到了一...
Golang如何在Lambda集成测试或单元测试中模拟AWS SNS?
英文: Golang how to mock aws sns in a lambda integration test or unit test 问题 我想在本地测试Lambda函数调用,而不使用AW...
How to do integration test for a service that depends on another service in a microservice environment?
英文: How to do integration test for a service that depends on another service in a microservice envir...
如何正确地对MongoDB的CRUD结果进行单元测试
英文: How to properly unit test mongoDB CRUD result 问题 我的应用程序主要使用mongo-go-drive包对MongoDB进行CRUD操作。这个函数是...
Golang模糊测试:语料库条目中的类型不匹配
英文: Golang Fuzzing: Mismatched types in corpus entry 问题 在使用Go 1.18引入的本地模糊测试功能时,我在重构我的测试后遇到了以下错误: ---...
如何在 Golang 的集成测试中模拟外部 HTTP 请求 API?
英文: How to mock external http request api when integration test in golang 问题 我有一个服务,可以从数据库获取数据,并从第三方...
结构体中指向接口的指针模拟错误
英文: Struct with an pointer to an Interface mock error 问题 package main import ( "github.com/golan...
grpc测试代码退出1,显示’rpc错误:代码=未实现,描述=方法Hello未实现’。
英文: grpc testing code exit 1 with 'rpc error: code = Unimplemented desc = method Hello not imple...
Go测试失败的数据库查询(空指针),但在Postman/Curl中正常工作。
英文: Go test fails db query (nil pointer) but works with Postman/Curl 问题 我正在测试一个名为GetCats()的函数,它从MySQ...
60