英文: Is there a best practice to setup golang unit test parameters? 问题 我的单元测试需要一个远程服务器地址来启动。服务器地址是不固定...
如何在多模块的Go项目中运行测试?
英文: How to run tests in a multimodule Go project 问题 我正在学习使用谷歌Go专项课程《与谷歌Go编程》。它包含了几门课程,每门课程都有几个模块。 我的...
如何为包含通道、文件遍历和 API 调用的 Golang 程序编写单元测试?
英文: How to write unit test for a program that contains channels, filewalk and api call in golang? 问题...
模拟一个类型,其中接口签名的类型也被模拟了。
英文: Mocking a type where interface signature's types are also mocked 问题 我正在尝试在不编辑现有库的情况下编写一个包装器,...
如何在单元测试中检查 sync.WaitGroup.Done() 是否被调用?
英文: How to check if sync.WaitGroup.Done() is called in unit test 问题 假设我有一个异步执行的go例程函数f: func f(wg *s...
如何为调用多次不同方法的 Golang 函数模拟单元测试 AWS 服务?
英文: How to mock unit tests for Golang function calling an AWS Service multiple times with different ...
一个函数内部启动一个go routine的单元测试。
英文: Unit testing of a function that starts a go routine inside it 问题 我有一个大致如下的代码库: type Service stru...
期望不匹配:Golang单元测试错误
英文: Expectations unmatched : Golang unit test error 问题 我是你的中文翻译助手,以下是你要翻译的内容: 我是Golang的新手,当我尝试运行下面的测...
使用stretchr/testify库比较具有切片字段的结构体时,可以忽略项目的顺序。
英文: Compare structs that have slice fields ignoring item order with stretchr/testify 问题 我有一个问题,我需要比较...
Golang:为测试文件读取函数创建临时目录
英文: Golang: Creating temporary directory for testing a file reading function 问题 我正在尝试为一个文件读取函数编写测试。该...
70