Golang coverage

From wikinotes

Go ships with a test coverage measuring tool.

Usage

go test -coverprofile=out.cov ./...  # report coverage to 'out.cov'
go tool cover -html=out.cov          # open report in web