英文: Not able to set header when calling test function with grpc.SetHeader or grpc.SendHeader 问题 我有一个...
Go cmp – 如何为以结构体为键的映射定义自定义相等性?
英文: Go cmp - how to define custom equality for a map with a struct as its keys? 问题 给定一个以结构体作为键的地图,其中...
Gomega是否支持验证多个不同类型的返回值,其中最后一个不是`error`?
英文: Can Gomega support verification of multiple return values of different types where the last one ...
如何为json.NewDecoder.Decode编写单元测试失败案例?
英文: How to write unit test failure for json.NewDecoder.Decode? 问题 我必须为一个函数编写单元测试,而这个函数使用了json.NewDec...
Go Fiber无法在单元测试中解析请求体。
英文: Go Fiber not able to parse body in unit test 问题 我正式向Stack Overflow上的善良的撒玛利亚人投降。 我正在尝试使用模拟数据库来对我的...
在Golang测试中将模拟对象作为参数传递
英文: Passing mock as argument in Golang test 问题 这是我正在测试的代码: func listObjects(cli *client.Client, opti...
Golang单元测试:模拟嵌套结构体的方法
英文: Golang Unit Test Mock method of nested struct 问题 我想模拟一个嵌套结构体的方法。我尝试定义一个接口并让模拟对象实现它,但是我无法使其正常工作。 ...
如何使用go test选择性地测试go模块?
英文: How to selective test go modules with go test? 问题 我正在一个庞大的遗留代码库中工作,其中有很多破损的测试,导致运行go test ./...返...
Golang mockgen “does not implement” interface issue Golang的mockgen“未实现”接口问题
英文: Golang mockgen "does not implement" interface issue 问题 我有一个接口,并使用mockgen创建了模拟对象: type ...
如何测试使用filepath.walk的函数?
英文: How do i test a function which uses filepath.walk 问题 我有一个函数,它可以获取目录中的所有PDF文件,并在存在文件时返回这些文件。 func...
70