Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 243 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 243 Bytes

Test Coverage

Look at the coverage of all test cases:

go test -cover

Get the cover profile and write it out to cover.out:

go test -coverprofile cover.out

Get the result in a web page:

go tool cover -html cover.out