英文: Is there a way to mock ValidationErrors in golang? 问题 我有一个函数,它解析类型为ValidationError的数组中的不同字段,以生成自...
在不使用接口的情况下,如何对外部库进行模拟函数的翻译。
英文: Go mock function from extenal lib without interface 问题 我已经为我们的程序使用了以下日志记录器lib。 我们已经创建了单元测试,并且我们需...
如何模拟 *exec.Cmd / exec.Command()?
英文: How to mock *exec.Cmd / exec.Command()? 问题 我需要模拟exec.Command()函数。 我可以使用以下方式进行模拟: var rName strin...
Check dynamic value for field in struct in go using testify
英文: Check dynamic value for field in struct in go using testify 问题 我有一个user service,用于验证用户数据并对其进行格式化...
模拟一个类型,其中接口签名的类型也被模拟了。
英文: Mocking a type where interface signature's types are also mocked 问题 我正在尝试在不编辑现有库的情况下编写一个包装器,...
期望不匹配:Golang单元测试错误
英文: Expectations unmatched : Golang unit test error 问题 我是你的中文翻译助手,以下是你要翻译的内容: 我是Golang的新手,当我尝试运行下面的测...
无法从同一网络上的容器获取响应,Docker Compose,Mountebank。
英文: Unable to get a response from a container on the same network, Docker compose, Mountebank 问题 我有一...
模拟一个结构体字段的方法
英文: Mocking a struct field's methods 问题 我正在处理一个简单的 Golang 服务器应用程序,用于进行 OAuth 认证。服务器代码很简单。在进行单元测试...
如何模拟 net.Interface?
英文: How to mock net.Interface 问题 我正在尝试在Go中模拟net.Interface,我使用net.Interfaces(),并且希望有一个固定的返回值。但是net.In...
Go Unit test – could not match actual sql with expected regexp while mocking gorm using go-sqlmock?
英文: Go Unit test - could not match actual sql with expected regexp while mocking gorm using go-sqlmo...
19