英文: Go Unit test - could not match actual sql with expected regexp while mocking gorm using go-sqlmo...
How to mock a package method in Go?
英文: How to mock a package method in Go? 问题 假设我有一个包含以下代码的包: package paths type FilePath struct { Path...
在Go中使用映射来模拟选择操作,返回了预期的事务开始错误。
英文: Mocking a select with mapping in Go is returning expected transaction begin error 问题 我正在尝试使用go-s...
如何为单元测试模拟数据库
英文: How to mock DB for unit tests 问题 我有一个类似这样的UserRepo: type users struct { *gorm.DB } func NewMySql...
Why do I need to pass the type for one param and not for another if they're the same type?
英文: Why do I need to pass the type for one param and not for another if they're the same type? 问...
如何使用stretchr/testify/mock的AssertCalled方法进行部分匹配断言?
英文: How to assert a partial match with stretchr/testify/mock AssertCalled? 问题 考虑以下Go语言中的单元测试文件。我正在使用...
使用os.Getenv切换测试覆盖率。
英文: Toggle Test Coverage with os.Getenv 问题 我正在进行一个简单的测试,并在Visual Studio Code中使用Go: Toggle Test Cover...
httptest ResponseRecorder 保留了旧值。
英文: httptest ResponseRecorder keeps the old value 问题 我有一个需要测试的handlerAuthentication函数: func handlerA...
Test_xxx函数在golang中访问共享数据是安全的吗?
英文: Is Test_xxx func safe to access shared data in golang? 问题 我对Golang的单元测试感到困惑。 我有两个Test_xxx函数,比如Te...
无法比较字节切片。
英文: Unable to compare byte slices 问题 我正在尝试编写一个单元测试用例,在其中使用reflect.DeepEqual来比较计算得到的结果和期望的结果。结构体中的一个条...
70