go test
是 Go 语言的内置工具,用于自动化测试 Go 代码。
1、测试文件结构
-
测试文件名
必须以 _test.go 结尾。例如:example_test.go。 -
测试函数名称
必须以 Test 开头,参数类型为 *testing.T
2、测试命令
在当前目录运行所有测试
go test
运行特定的测试函数
go test -run Testfunc
查看代码覆盖率
go test -cover
生成详细的测试覆盖率报告
go test -coverprofile=coverage.out
go tool cover -func=coverage.out
3、额外测试
基准测试
基准测试函数以 Benchmark 开头,参数类型为 *testing.B
go test -bench=.
并发测试
使用 Go 的 t.Parallel() 方法
func TestAdd(t *testing.T) {
t.Parallel()
result := Add(1, 2)
if result != 3 {
t.Errorf("Add(1, 2) = %d; want 3", result)
}
}
4、其他常用标志
-timeout:设置测试的超时时间。例如,-timeout 30s。
-coverpkg:计算多个包的覆盖率。
-short:运行短测试,跳过长时间运行的测试。
标签:testing,test,测试,测试函数,go,Go From: https://www.cnblogs.com/itsfei/p/18429296-json:以 JSON 格式输出测试结果。