PHPUnit via Composer and PhpStorm(PHPUnit 通过 Composer 和 PhpStorm)
问题描述
我现在尝试了几个小时来设置 PhpStorm 进行单元测试.无论我做什么,我都会得到这个
I'm now trying for hours to setup PhpStorm for unit testing. Whatever I do, I get this
Process finished with exit code 1
Cannot find PHPUnit in include path ...
PHPUnit 可以(通过命令行)从任何地方访问;我已经设置了正确的包含路径并将 PHPUnit 添加到外部库中.没有机会.
PHPUnit is (via command line) accessible from anywhere; I've set the correct include path and have added PHPUnit to the external libraries. No chance.
有没有可能,还是只能通过 PEAR 进行安装?我在这里解决了所有相关问题,我在 Mac 上,PHPUnit 通过 CLI 顺利运行.
Is it possible at all or does it only work with installations via PEAR? I've worked through all related questions here, am on Mac and PHPUnit is running smoothly via CLI.
推荐答案
Patrick Visma 在 上发布了解决方案http://youtrack.jetbrains.com/issue/WI-13429:
Patrick Visma posted the solution on http://youtrack.jetbrains.com/issue/WI-13429:
在 PHPStorm 中编辑 phpunit.xml 的配置,并像这样设置解释器选项:
Edit the configuration for your phpunit.xml in PHPStorm, and set the Interpreter options like this:
-d auto_prepend_file=/path/to/vendor/autoload.php
这篇关于PHPUnit 通过 Composer 和 PhpStorm的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHPUnit 通过 Composer 和 PhpStorm
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01