英文: testing gorm with go-sqlmock issue comparing queries with mock.ExpectQuery and regexp.QuoteMeta ...
禁用 RYUK(Go 的 Testcontainers)
英文: Disable RYUK (Testcontainers for Go) 问题 我正在使用Bitbucket Pipelines来运行使用Testcontainers的Go项目测试。管道失败并...
如何在GoFiber中为main.go编写测试代码
英文: How to write test for main.go in GoFiber 问题 以下是我的main.go代码: func main() { app := fiber.New() app...
如何模拟 Fiber 上下文
英文: go - How to mock fiber context 问题 我一直在尝试模拟一个fiber.Ctx,但是我无法使其工作,我一直得到这个错误: --- FAIL: TestCheckHe...
允许测试结果依赖于外部工具的安装。
英文: Allow test result to depend upon installation of external tool 问题 我正在创建一个 Golang 项目,并且在添加功能时很好地进...
如何使用Golang仅在一段时间内并行收集Kubernetes(k8s)的Pod日志
英文: How to collect k8s pods logs in parallel using golang only for a duration of time 问题 我是你的中文翻译助手,...
如何在golang中测试映射对象
英文: How to Test mapped Objects in golang 问题 我尝试在我的Go代码中实现一些单元测试,并发现模拟方法的主题相当困难。 我有以下示例,希望你能帮助我 :) 在第...
在Go中进行测试。如何使用虚假文件夹结构测试文件夹结构?
英文: Testing in Go. How to test folder structure using fake folder structure? 问题 我正在编写一个函数,用于从源文件夹递归地...
如何将 os.Stdout 的输出捕获到字符串中以进行测试目的?
英文: How do I capture os.Stdout output into a string for testing purposes? 问题 我有一个函数,它会将输出发送到os.Stdou...
在Go语言中测试GRPC流式发送函数
英文: Testing around GRPC stream Send function in Go 问题 我有一个Go GRPC服务器端流式传输函数: func (server *Server) G...
60