https://github.com/polaris1119/The-Golang-Standard-Library-by-Example/blob/master/chapter09/09.1.md
- terminal:
go test -cover
- html
go test -coverprofile=cover
go tool cover -html=cover
- test single file
go test ./base/utils_test.go
- test single func
go test ./base/utils_test.go -run AddOne