Canonical guidance

Use when

Avoid

Preferred pattern

go test -cover ./...
go test -coverpkg=./... -coverprofile=cover.out ./...

Anti-pattern

Explanation: This anti-pattern is tempting because one number is easy to govern, but it is a weak proxy for real confidence.

Why

Related pages

Sources