英文: How do I give my JSON schema an absolute URL for its $id when I haven't published it yet bec...
如何在githubv4中使用go-vcr?- 获取httpClient传输
英文: How to use go-vcr with githubv4 ? - getting httpClient Transport 问题 看一下go-vcr的设置 // 启动录制器 r, err...
当包装 testing.T.Errorf() 时显示原始源代码行。
英文: Show original source line when wrapping testing.T.Errorf() 问题 我正在为一个Go模块编写一些测试。其中很大一部分是检查函数是否返回正...
如何在Golang语言中使用http.ResponseWriter和http.Request作为参数(单元测试)
英文: How to use http.ResponseWriter and http.request as argument(Unit Testing) with Golang language 问...
如何按顺序在单元测试中执行 Go 函数?
英文: How to execute Go functions by order in Unit Test? 问题 我是新手,想为这个小型API编写一个单元测试: 登录请求。 注销请求。 我希望它们按...
有没有一种方法可以在golang中模拟ValidationErrors?
英文: Is there a way to mock ValidationErrors in golang? 问题 我有一个函数,它解析类型为ValidationError的数组中的不同字段,以生成自...
如何测试使用中间件的处理程序?
英文: How to test handler which uses middleware 问题 如何测试使用中间件的处理程序 我正在尝试为使用中间件但不作为依赖项的处理程序编写单元测试。 我的处理程...
在单元测试期间,有没有办法忽略来自第三方包的测试错误?
英文: Is there a way to ignore test errors coming from third party packages during unit tests? 问题 我的测试...
在不使用接口的情况下,如何对外部库进行模拟函数的翻译。
英文: Go mock function from extenal lib without interface 问题 我已经为我们的程序使用了以下日志记录器lib。 我们已经创建了单元测试,并且我们需...
多次传递输入来测试一个函数
英文: Testing a Function by Passing Input Multiple Times 问题 我正在学习使用测试编写Go程序。我在《Head First Go》第2章的结尾部分得...
70