PHPUnit works greate for other projects but when I'm trying to run Yii tests I'm getting the following warning (even for empty tests):
There was 1 failure:
1) Warning
Warning: include(PHP_Invoker.php): failed to open stream: No such file or directory in C:\Users\pumpkin\Documents\GitHub\arhano\codebase\arhanoii\vendor\yiisoft\yii\framework\YiiBase.php on line 423
Warning: include(): Failed opening 'PHP_Invoker.php' for inclusion (include_path='.;C:\Users\pumpkin\Documents\GitHub\arhano\codebase\arhanoii\componen ts;C:\Users\pumpkin\Documents\GitHub\arhano\codebase\arhanoii\models;C:\xampp\php\PEAR') in C:\Users\pumpkin\Documents\GitHub\arhano\codebase\arhanoii\ vendor\yiisoft\yii\framework\YiiBase.php on line 423
Looks like I have to install phpunit/PHP_Invoker, but it's impossible, because it requires pcntl PHP extension, wich is not avilabe on Win.
Do you know how to mute this warning? Is it possible to run Yii tests on Windows without usage of PHP_Invoker?