英文: What's the best way to mock a dependency in GO when the dependency doesn't expose an int...
如何在我的项目中运行go test,但排除供应商包中的所有测试文件?
英文: How to run go test on all test files in my project except for vendor packages 问题 我的项目文件夹包含: Make...
在Golang中不使用”go test”运行基准测试。
英文: Running benchmarks without "go test" in golang 问题 我想在我的应用程序中运行基准测试。这可能吗?如果可以,我该如何操作?我一...
echo c.Get(“user”)在测试环境中无法工作。
英文: echo c.Get("user") does not work in testing env 问题 我正在尝试测试一个基于Echo框架/路由器构建的Golang API。...
如何模拟 http.Client 的 Do 方法?
英文: How to mock http.Client Do method 问题 我正在尝试找到一个解决方案来编写测试和模拟HTTP响应。在我接受接口的函数中: type HttpClient int...
测试非不透明错误值
英文: Testing non-opaque error values 问题 在Go语言中,比较非透明错误值是否有最佳实践? 大多数代码库似乎将错误视为不透明的(要么操作成功,要么失败,没有对导致错误...
如何在Golang中测试日志记录(log.Println)?
英文: How to test logging(log.Println) in Golang? 问题 如何在Golang中测试下面的代码? package main import "log...
有没有一种方法可以在 testify 中链接多个断言?
英文: Is there a way to chain asserts with testify? 问题 我非常喜欢go test中的testify带来的好处。然而,我查阅了文档,没有找到如何处理多个...
在golang中测试一个函数。
英文: Testing a function in golang 问题 所以我决定为我的 golang 函数编写测试。函数本身如下所示: func Insert(slice []int, elemen...
调用`go test`命令时,使用不同的包会导致输出的差异。
英文: Difference in output when calling go test with package 问题 我有一个Go项目,我在其中使用glide进行包管理。 我使用godog设置了...
60