英文: GoLand No Tests Were Run 问题 我有一个正在测试的方法,一切似乎都很好。然而,当我在 GoLand 中运行测试时,我可以在输出中看到测试“通过”,但测试运行器却说“没有...
为所有测试文件初始化一次某个东西,并在它们的init()函数中使用它。
英文: Initialise something once for all test files, and use it in their init() 问题 我想要初始化一个数据库连接,该连接将在多...
How to mock a package method in Go?
英文: How to mock a package method in Go? 问题 假设我有一个包含以下代码的包: package paths type FilePath struct { Path...
How do I write a go Test function for something that reads from stdin?
英文: How do I write a go Test function for something that reads from stdin? 问题 我有一个类似于这样的go测试代码: func...
如何将TestMain(m *testing.M)限制在当前测试文件中?
英文: How to restrict TestMain(m *testing.M) to the current test file 问题 是否可以将func TestMain(m *testing...
测试使用全局变量的Go协程
英文: Testing Go Routine with Global Variables 问题 我正在尝试在一个文件中测试以下方法(经过大量编辑以创建一个小样本): app.go var fruit ...
使用os.Getenv切换测试覆盖率。
英文: Toggle Test Coverage with os.Getenv 问题 我正在进行一个简单的测试,并在Visual Studio Code中使用Go: Toggle Test Cover...
如何编写一个测试用例来验证OAuth令牌?
英文: How to write a test case to verify OAuth token? 问题 我们有一个GoLang后端服务(启用了OAuth),它接受带有Authorization头...
将文件中的GET参数解析为Go中的NewRequest调用。
英文: Parsing GET parameters from a file to a NewRequest call in Go 问题 我目前正在尝试将GET参数从文件传递给httptest.New...
当存在步骤时,Godog会显示未定义的步骤。
英文: Godog Undefined Steps when Steps are present 问题 我一直在使用Godog在Golang中为一个微服务实现功能文件测试。 我的功能文件中有54个步骤...
60