从包中仅测试一些功能/套件

时间:2013-08-10 13:11:14

标签: testing go

是否可以将测试过程拆分为某个包? go test package - 在包中的所有* _test.go文件中使用所有函数Test *。如果你有很多测试,并尝试TDT它相当无聊,以接收所有测试日志。

1 个答案:

答案 0 :(得分:4)

参见'go help test'和'go help testflag'。从后来引用:

...

-run regexp
    Run only those tests and examples matching the regular
    expression.
...