To run tests simply run
go test ./... -coverprofile=coverage.out
To deep dive into test coverage, run the following command to see the result in your terminal
go tool cover -func=coverage.out
or the following to see the result in your browser
go tool cover -html=coverage.out