英文: Golang gorm mocking 问题 我在我的项目中使用gorm。我能否在没有数据库连接的情况下对这个数据库 orm 进行测试模拟?我们在 CI 工具中遇到了问题,因为我没有数据库或者...
How to write mock for structs in Go
英文: How to write mock for structs in Go 问题 我想为Transport函数编写一个单元测试,需要模拟CarFactory和Car结构体。请看以下代码: pack...
Golang测试,调用数据库的Prepare应该失败,但实际上没有失败。
英文: Golang test, call to database Prepare should fail, but it does not 问题 我正在使用go sqlmock帮助编写一些测试代码。...
如何模拟一个结构体,如果你直接访问它的字段。
英文: How to mock a struct if you directly access its fields 问题 我正在编写一个作为 Github API 客户端的程序。我使用 https:...
在Golang中模拟函数以测试我的HTTP路由。
英文: Mocking functions in Golang to test my http routes 问题 我完全困惑了,想弄清楚如何模拟一个函数,而不使用任何额外的包,比如golang/mo...
测试使用redigomock进行事务(MULTI)命令的操作。
英文: Test a transaction (MULTI) command with redigomock 问题 在单元测试中,我该如何设置redigomock来测试包含多个命令的MULTI调用? ...
来自golang包的模拟方法
英文: Mocking method from golang package 问题 我一直无法找到一种解决办法来对golang包中的方法进行模拟。 例如,我的项目中有一段代码,当Os.Getwd()返...
Golang:如何使用gomock模拟…interface{}参数
英文: Golang: how to mock ...interface{} arguents using gomock 问题 我有一个使用标准go Printf 函数签名的 Printer 接口: ...
如何处理用于 CLI 测试的 “fmt” Golang 库包?
英文: how to deal with the "fmt" golang library package for CLI testing 问题 免责声明:祝您圣诞快乐,希望我的问...
测试使用本地文件
英文: Testing using local files 问题 我正在寻找在使用Go进行本地文件测试时应该使用的最佳实践。 使用本地文件意味着为了测试功能,应用程序需要一些本地文件,因为应用程序经常...
19