在使用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.phar
了它,它可以与提供的 phpunit.xml.dist 一起使用。
问题一: PhpStorm IDE 有没有办法使用 phpunit-bridge?
问题 2: Symfony 4(phpunit-bridge 或 vanilla phpunit.phar)的最佳实践是什么?