WORK IN PROGRESS: Utility for converting the go test coverage output into the lcov format.
go test -coverprofile=coverage.out; cat coverage.out | covfmt > ./lcov.info
go test -cover
go test -coverprofile=coverage.out; go tool cover -html=coverage.out -o=index.html