英文: How to pass path param to httptest request 问题 我正在为我的HTTP API编写单元测试用例,我需要将路径参数传递给API端点。 GetProduc...
如何在 Golang 的单元测试中模拟 Netconf 会话?
英文: How do I mock netconf session in unit tests Golang 问题 我正在使用Juniper的netconf包("github.com/Jun...
如何在GoFiber中为main.go编写测试代码
英文: How to write test for main.go in GoFiber 问题 以下是我的main.go代码: func main() { app := fiber.New() app...
运行多二进制项目的所有测试
英文: Running all tests for a multi-binary project 问题 考虑一个具有以下结构的多二进制项目。 . ├── bin1 │ ├── config │ │ ├...
Mocking a inner function(or even more deep) for testing in go
英文: Mocking a inner function(or even more deep) for testing in go 问题 有没有办法实现这个?我想在一个函数调用内部模拟另一个函数调用的...
允许测试结果依赖于外部工具的安装。
英文: Allow test result to depend upon installation of external tool 问题 我正在创建一个 Golang 项目,并且在添加功能时很好地进...
模拟ioUtils.ReadAll在读取http响应的主体时失败,而不使用httptest。
英文: Mock ioUtils.ReadAll to fail when reading body of httpresponse, without using httptest 问题 我目前正在尝...
比较嵌套切片并忽略顺序
英文: comparing nested slices while ignoring order 问题 在一个测试函数中,有一种情况需要比较嵌套切片。假设我有两个变量如下: want := [][]s...
为单元测试创建一个超时错误(deadlineExceededError),并将超时设置为true。
英文: Create a deadlineExceededError for unit tests with timeout: true 问题 我正在尝试在我的项目中创建一个单元测试,其中我模拟了HT...
在Go中进行测试。如何使用虚假文件夹结构测试文件夹结构?
英文: Testing in Go. How to test folder structure using fake folder structure? 问题 我正在编写一个函数,用于从源文件夹递归地...
70