英文: how to run go-unit-tests pre-commit hook to run with option -p 问题 我正在研究这个 golang-precommit hooks...
How can I represent map[string][]byte?
英文: How can I represent map[string][]byte? 问题 我想创建一个地图,但我不确定语法。map[string][]byte 数据类型给我带来了麻烦,因为我认为下面...
Visual Studio Code的“运行测试 | 调试测试”选项在单元测试中丢失。
英文: Visual Studio Code's "Run Test | Debug Test" option missing from unit tests 问题 我曾经...
当测试文件位于包外时,Golang的测试覆盖率。
英文: Golang test coverage when test files outside package 问题 我正在尝试使用位于测试目录中的测试文件,获取处理器包中代码的适当覆盖量。我尝试了...
Why does go-cmp Equal() say that the structs are not deeply equal, even though all fields are deeply equal?
英文: Why does go-cmp Equal() say that the structs are not deeply equal, even though all fields are de...
如何在多个Go包中只运行一次数据库设置?
英文: How to run database setup only once from multiple Go packages? 问题 我正在尝试在我的数据库中创建一些对象,以便我的测试可以使用一...
为什么在goroutine内声明的benbjohnson/clock模拟计时器不执行?
英文: Why does benbjohnson/clock mock timer not execute when declared inside a goroutine? 问题 这段代码按照我的预...
使用sqlmock进行DB模拟在测试Gin/GORM API时不起作用吗?
英文: DB mock using sqlmock not working for testing Gin/GORM API? 问题 我有一个使用Gin编写的API,使用GORM进行ORM操作。当使用...
如何在用例中循环测试Go Mock Repository?
英文: How to test Go Mock Repository inside loop on usecase 问题 我有一个使用testify进行存储库模拟数据库测试的问题。 我想要测试一个服务...
运行 `go test ./…` 命令时,出现了子文件夹中缺少测试的情况。
英文: go test ./... missing tests in subfolders 问题 在根目录下运行go test -v ./...会错过项目文件夹中的一些测试。 我的文件结构如下: . ...
70