英文: Cannot make Goose DB Migration working for Go testing 问题 我目前正在学习用于Web编程的Golang,现在我正在学习有关数据库、Rest...
测试 fasthttp 和 httptest
英文: Testing fasthttp with httptest 问题 我想知道如何使用Go语言基础库中的httptest包来测试使用fasthttp编写的应用程序。 我找到了这篇指南,很好地解释...
缓冲字符串(Buffer string)与字符串(string)不相等。
英文: Buffer string() not equal string 问题 我试图测试我的HTTP处理程序是否在响应体中返回了正确的值。 这是我的处理程序函数: func Index(w http...
如何可靠地获取Go项目的根目录?
英文: How to reliably get the projects root in go? 问题 现在我使用runtime.Caller(0)与path.Dir和filepath.Abs结合使用...
如何测试gin应用程序中的主要函数?
英文: How to test main function in gin application? 问题 你好!以下是翻译好的内容: 如何测试 func main 函数?像这样: func main(...
如何测试这个方法?
英文: How would I test this method? 问题 基本上,我已经开始为Riot Games API编写一个包装器,但我在如何测试它方面遇到了困难。我已经将存储库连接到了Trav...
如何模拟 DNS 请求?(miekg/dns)
英文: How to mock a DNS request? (miekg/dns) 问题 我有这段小代码来解释我试图测试的代码库。为了简化问题,我跳过了错误检查。 func lastCNAME(do...
只在测试文件中引用的测试代码会被编译进二进制文件吗?
英文: Will go test code only referenced in test files be compiled into the binary? 问题 如果使用go build ./....
测试主函数存在多个定义
英文: TestMain multiple definitions found 问题 如果我定义了两个测试,每个测试都有自己的TestMain方法,go test会报错:"multiple ...
如何在Golang中正确地模拟带有成员函数的结构体?
英文: How to properly mock a struct with member functions in Golang? 问题 我有两个结构体:FunctionalityClient 和 ...
60