如何配置PhpStorm以使用symfony/phpunit-bridge。步骤:
我在使用Symfony 3.3时将PhpStorm IDE配置为使用 http://symfony.com/doc/current/components/phpunit_bridge.html 时遇到问题。
我决定下载并使用它。phpunit.phar
bin
Symfony 3.4(和Symfony 4)甚至没有开箱即用,因此使用容易存在问题。phpunit.xml.dist
phpunit.phar
我已经使用flex安装了PHPUnit:
composer req phpunit
这创建了phpunit.xml.dist,我能够通过以下方式从命令行运行测试:
php bin/phpunit
但是我又不能让PhpStorm使用它。
所以我下载了,它可以与提供的phpunit.xml.dist一起工作。phpunit.phar
问题 1:PhpStorm IDE 有没有办法使用 phpunit-bridge?
问题 2:Symfony 4(phpunit-bridge或vanilla phpunit.phar)的最佳实践是什么?