Here is Code Coverage information for Secret Management Service

We are currently at 70.8%

Here is a HTML browser for the code and coverage within:

coverage.html

The same coverage reported from the command line:


How to Generate Code Coverage Reports for Golang Applications

This document covers how to generate HTML Code Coverage Reports for Golang Applications.

go test -c -covermode=count -coverpkg ./...
./sms.test -test.run "^TestMain$" -test.coverprofile=coverage.cov
go test -test.covermode=count -test.coverprofile=unit.out ./...
go get github.com/wadey/gocovmerge
gocovmerge unit.out coverage.cov > all.out
# HTML Report File
go tool cover -html all.out -o coverage.html

# Function Coverage Report
go tool cover -func all.out