I\'ve tried running the following CLI command:
phpunit -d xdebug.profiler_enable=on XYZTestCase.php
but it just runs as normal. Can anyone
Did you try to :
restart your server
Call you script by adding -d xdebug.idekey=blacktie
phpunit -d xdebug.profiler_enable=on -d xdebug.idekey=blacktie XYZTestCase.php
Hope that help.