通过 go help testflag 可以看出,可以使用 test.run 加正在表达式来指定要测试的用例。
如有以下用例在包 foo/test 中:
func TestFoo(t *testing.T){}
func TestFoo1(t *testing.T){}
func TestAbc(t *testing.T){}
go test -v foo/test 将测试所有的用例 (-v 表示输出详细信息,无论成功失败)
go test -v -run TestFoo foo/test 将测试 TestFoo 和 TestFoo1
go test -v -run ^TestFoo$ foo/test 将只测试 TestFoo
有疑问加站长微信联系(非本文作者)