英文: (go) Deep equality for ssh.AuthMethod 问题 我正在使用 crypto/ssh 包,并且我正在尝试为构建 ClientConfig 的方法编写单元测试。 其...
您好!您想知道如何模拟 rand.Reader 失败以进行测试目的。
英文: How can I simulate a failure of rand.Reader for testing purposes? 问题 我正在尝试为我的函数编写单元测试;请注意,它调用了ra...
我可以为我的测试案例编写自己的go的http client.Do()函数版本吗?
英文: Can I write my own version of go's http client.Do() function for my test cases? 问题 我有一个名为use...
Ginkgo: 为单元测试模拟一个方法
英文: Ginkgo: Mocking a method for unit test 问题 请注意,结构体 S 实现了接口 I。 我正在尝试通过模拟来测试 MethodA 的 MethodB 响应。 ...
Golang:模拟响应测试HTTP客户端
英文: Golang: mock response testing http client 问题 我是你的中文翻译助手,以下是翻译好的内容: 我是Golang的新手,正在尝试为一个简单的HTTP客户端...
使用*s3.S3对象进行Golang单元测试
英文: Golang unittest with *s3.S3 object 问题 如何对以下代码进行单元测试。我尝试使用counterfiter来伪造输入的"*s3.S3"对象,...
如何在Golang中创建一个包含HTTP客户端的结构体的模拟对象?
英文: how to create a mock of a struct that includes a http client in golang? 问题 让我们来看一个例子: 包A: type C...
How to mock a third-party struct with many methods and perform unit tests on endpoints that depend on the third-party struct?
英文: How to mock a third-party struct with many methods and perform unit tests on endpoints that depe...
如何测试调用自己方法的结构体?
英文: How to test a struct that calls its own method? 问题 我有一个结构体: type foo struct { bar mockableInterf...
模拟一个 go-logr 并验证它记录的消息。
英文: Mock a go-logr and verify the message it logs? 问题 我正在使用go-logr/logr库。我有一个测试需要将logger作为参数传递,并检查它是...
70