Reputation: 113
I install PHPunit code coverage in PHPStorm. When I run the PHPUnit, it displays an error message:
PHPUnit 5.7.26 by Sebastian Bergmann and contributors.
Error: No code coverage driver is available
Can you help me ?
Upvotes: 0
Views: 628
Reputation: 1425
You need to install/activate XDebug or Zend-Debugger on your Web-Server. XDebug can simply be activated in the php.ini.
Upvotes: 0