Code Coverage in Go lang while executing unit test case .
go test ./mathoperation/ -cover
go test ./mathopearation/ -coverprofile cover.out -covermode count
How to view output
go test cover -help
go test cover -html=cover.out
go test cover -func=cover.out
Git Hub Repo :
https://github.com/PylinuxTech/go_lan...