Checking Test Coverage

Let's continue our journey into standard Golang testing and look into test coverage.

We'll cover the following...

Checking the test coverage is super important because if your test coverage is incomplete, it is safe to assume that the uncovered parts are broken. You wouldn’t want to deploy broken code, so ...