| Home >> All >> com >> puppycrawl >> tools >> checkstyle >> checks >> [ metrics Javadoc ] |
com.puppycrawl.tools.checkstyle.checks.metrics: Javadoc index of package com.puppycrawl.tools.checkstyle.checks.metrics.
Package Samples:
com.puppycrawl.tools.checkstyle.checks.metrics
Classes:
CyclomaticComplexityCheck: Checks cyclomatic complexity against a specified limit. The complexity is measured by the number of "if", "while", "do", "for", "?:", "catch", "switch", "case", "&&" and "||" statements (plus one) in the body of the member. It is a measure of the minimum number of possible paths through the source and therefore the number of required tests. Generally 1-4 is considered good, 5-7 ok, 8-10 consider re-factoring, and 11+ re-factor now!
AbstractComplexityCheck: Base class for checks the calculate complexity based around methods.
CyclomaticComplexityCheckTest
| Home | Contact Us | Privacy Policy | Terms of Service |