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 you better be aware of the test coverage and strive to 100%.
Checking test coverage
When writing tests for non-trivial code it’s important to make sure your tests actually cover the code. This is where ...