🤖 Backend
Go
Golang Unit Test

Golang Unit Test

Basic

Tools

  • testify
  • mockgen

Get coverage

go test -cover

or

go test -cover ./...

or

go test -coverprofile=coverage.out ./... ;    go tool cover -func=coverage.out

or to check the source code

go test -coverprofile=coverage.out ./... ;    go tool cover -html=coverage.out

Test Unexported (private) function

https://stackoverflow.com/questions/24622388/how-to-test-a-unexported-private-function-in-go-golang (opens in a new tab)

Resource