est
gotests使编写Go测试变得容易。 这是一个Golang命令行工具,可根据其目标源文件的功能和方法签名生成。 测试文件中的所有新依赖项都将自动导入。
演示版
下面显示gotests行动中使用的。 还存在用于 , , , , 和。
安装
最低Go版本: Go 1.6
使用安装和更新:
$ go get -u github.com/cweill/gotests/...
用法
gotests , gotests可以为特定的源文件或整个目录生成Go测试。 默认情况下,它将其输出打印到stdout 。
$ gotests [options] PATH ...
可用选项:
-all generate tests for all functions and methods
-excl regexp. generate tests for functions and methods that don't
match. Takes precedence o
1