Tag: conditions

Road to 100% coverage: conditions and loops

What does 100% test coverage mean? For most code coverage tools I've used, it means that all statements and conditions written in a project are run by an automated test of any type at least once. This does not mean that these tests validate all possible outcomes of your code or consider al...