英文: How to assert that the request happened when mocking an API concurrently? 问题 对于您提供的代码和问题,我将为您进行翻...
当模拟一个 API 请求时,如何确保请求正确地发生呢?
英文: How do I guarantee that the request happened correctly when mocking an API? 问题 假设我正在测试一个调用 Web 服...
Golang:为测试文件读取函数创建临时目录
英文: Golang: Creating temporary directory for testing a file reading function 问题 我正在尝试为一个文件读取函数编写测试。该...
测试覆盖率构建失败,只能用于测试的包。
英文: go test coverage failing to build with test only packages 问题 在测试Go文件的测试覆盖率时,针对不同的包,您可以运行以下命令: 从这...
如何在Go中随机打乱测试包的顺序?
英文: How to shuffle testing order of packages in go? 问题 当我执行类似于以下命令时: go test \ github.com/mycompany/...
使用client-go的fake client来模拟错误
英文: Mocking errors with client-go fake client 问题 我正在使用client-go(用于Go的Kubernetes客户端)从我的集群中以编程方式检索和更新一...
在Golang中测试日志语句的输出
英文: Testing a Log statement output in Golang 问题 你好,我想确认一下Log.error()的输出是否有效,我有以下的代码: func logError(p...
How do i apply unit testing to check leap year with golang?
英文: How do i apply unit testing to check leap year with golang? 问题 我想进行单元测试,并检查日期是否为闰年。在这种情况下,我该如何应用...
使用公共构造函数对私有类型进行表驱动测试
英文: Table driven tests for private types with public constructors 问题 我正在尝试减少我的API的表面积,所以我将我的app结构体设为...
temporal: when testing, how do I pass context into workflows and activities?
英文: temporal: when testing, how do I pass context into workflows and activities? 问题 我正在为一个时间工作流编写集成测...
60