Go Testing View code coverage in HTML format

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

Run go test as normal, yet with the coverprofile flag. Then use go tool to view the results as HTML.

    go test -coverprofile=c.out
    go tool cover -html=c.out


Got any Go Question?