Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 306 Bytes

gotest.md

File metadata and controls

20 lines (16 loc) · 306 Bytes

Gotest

gotests

# 安装gotests
go get github.com/cweill/gotests/...

# env
export PATH=$PATH:$GOPATH/bin

# 生成所有测试用例
gotests -all {$filename}

go test

go test -v {$testfile} {$sourcefile}
go test -v {$testfile} {$sourcefile} -test.run {$test case name}