Monitor code coverage for PHP applications
Code Coverage for PHPUnit shows you how much of your code is covered with tests and marks covered and uncovered lines visually right in the editor.
Before you begin, make sure that:
The PHPUnit tool is installed on your machine and enabled in IntelliJ IDEA.
A Xdebug or Zend Debugger debugging engine is configured in the current PHP interpreter.
Install the PHP plugin
This functionality relies on the PHP plugin that should be installed and enabled in your IDE.
The plugin is available only in IntelliJ IDEA Ultimate.
Press Ctrl+Alt+S to open the IDE settings and select
.Switch to the Marketplace tab and use the search field to find the PHP plugin.
Click Install and restart the IDE if prompted.
Configure code coverage
Press Ctrl+Alt+S to open the IDE settings and select
.Specify coverage options on the Coverage page.
Measure code coverage
Write the tests manually.
Create a run configuration of the type PHPUnit.
On the main toolbar, select the PHPUnit run configuration in the Run/Debug Configurations list and click the Run with Coverage button .
Review code coverage results.