There are other yummies
Code Coverage
Code coverage helps you to identify code parts that are not covered by tests. Theoretically, 100% coverage is attainable, but most of the time, you will achieve less than that percentage.
Generating code coverage is simple, like a piece of cake. We can generate coverage for all tests, test suites, or only for test files, with the same options described in the previous chapter.
$ cd ∼/public_html/cakeBlog
$ vendor/bin/phpunit --coverage-html webroot/coverage tests/TestCase/Model/Table/UsersTableTest.php ...