Changes for page Testing Principles
Last modified by chrisby on 2024/04/01 12:52
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,5 @@ 1 -* ** CodeCoverage**:2 -** Definition: The percentage of classes/methods/lines of code executed during testing. There is class coverage, method coverage and line coverage .Codecoverage is generallyauseful quality metricand indicator of missing tests,butit isnot aguaranteeof goodtests or that all relevantcases are covered,sotakeitwithagrainof salt.1 +* **High Coverage**: 2 +** **Code Coverage** Definition: The percentage of classes/methods/lines of code executed during testing. There is class coverage, method coverage and line coverage, the latter being the most important. 3 3 ** **100% code coverage** is the goal. Untested code is insecure code and prone to bugs. 4 4 ** Leverage **code coverage tools** that determine code coverage during test execution. 5 5 ** **Meaningful Tests:** Don't add tests that don't add value or test something that has already been tested.