Greg Donald : Shell script to automate go lang pkg test coverage Page

Shell script to automate go lang pkg test coverage

#!/bin/sh
PACKAGE=mypkg

# set mode
go test -coverprofile=coverage.out $PACKAGE
go tool cover -func=coverage.out
go tool cover -html=coverage.out

# count mode
go test -covermode=count -coverprofile=count.out $PACKAGE
go tool cover -func=count.out
go tool cover -html=count.out

# more info: http://blog.golang.org/cover

go-lang (3) testing (2)