php_testability
php_testability copied to clipboard
Analyses and reports testability issues of a php codebase
Possibility to specify an list of: - Leaf functions (won't be counted as a global function call) - Value object classes (won't be flagged when using `new`) This should be...
And make the highlight labels link to the respective documentation. Maybe display this in a modal (with an iframe)?
First step: see if I can find any existing class that already does this.
If a function takes no arguments, can it be tested in isolation? A class method can be tested for dependencies called (mocked methods, etc), but what can we test on...
Add a new column with a number for "Cyclomatic complexity" per method. This will let us know how complex is it to test. Is there any lib (not external tool)...