是否可以将测试过程拆分为某个包? go test package - 在包中的所有* _test.go文件中使用所有函数Test *。如果你有很多测试,并尝试TDT它相当无聊,以接收所有测试日志。
答案 0 :(得分:4)
参见'go help test'和'go help testflag'。从后来引用:
...
-run regexp
Run only those tests and examples matching the regular
expression.
...