英文: How to mock a function to get a different return value in golang 问题 我正在为我在golang中开发的一个函数编写单元测试。以...
如何在Golang中正确地模拟带有成员函数的结构体?
英文: How to properly mock a struct with member functions in Golang? 问题 我有两个结构体:FunctionalityClient 和 ...
列出测试但不运行它们。
英文: List tests but don't run them 问题 你可以使用go list命令来列出可用于go test的测试,而不运行它们。以下是示例命令: go list ./.....
在Go语言中,测试是并行执行还是逐个执行的?
英文: Are tests executed in parallel in Go or one by one? 问题 我有一个带有单元测试的Go文件,其中一些测试使用了一个公共变量。另一个全局变量在我...
使用go test(golang)找到测试失败的文件名。
英文: Finding file name of test that failed using go test (golang) 问题 当Go单元测试失败时,"go test"会显...
Unit testing http handlers in golang mocking dependencies
英文: Unit testing http handlers in golang mocking dependencies 问题 目前,我正在尝试为Go处理程序建立单元测试的最佳实践。我需要模拟依赖项...
在单元测试中模拟 context.Done()。
英文: Mock context.Done() in unit test 问题 我有一个HTTP处理程序,在每个请求上设置了一个上下文截止时间: func submitHandler(stream c...
单元测试 os.File.Write 调用
英文: Unit testing os.File.Write call 问题 我想对调用os.File.Write()的函数进行单元测试,并且要实现100%的覆盖率。 这个函数返回n和一个错误。引发一...
Example code for testing the filesystem in Golang
英文: Example code for testing the filesystem in Golang 问题 我正在尝试为一个与文件系统交互的函数编写单元测试,并且希望在测试过程中能够模拟文件系统...
在Go语言的单元测试中,是否可以动态断言两个值是否相等或不相等?
英文: Is it possible to dynamically assert if two values are equal or not equal when unit testing in G...
70