How to set up HHVM for PHPUnit in PhpStorm

How can I run my unit tests in PhpStorm 8 using HHVM as interpreter?

PhpStorm 8 supports PHPUnit 4 which supports HHVM and I can run my test package on termianl using HHVM, but I don't know how to set up PhpStorm 8 to run my unit tests using HHVM.

+3


source to share


1 answer


PHPStorm 8.0.2 is now possible:



In PHP settings add a new interpreter located in /usr/bin/hhvm

or/usr/local/bin/hhvm

+3


source







All Articles