从 phpunit --骨骼 生成测试用例时如何指定特定文件夹?
我正在尝试使用 phpunit 生成器生成测试用例。
我正在使用以下命令:
phpunit --skeleton-test "Namespace\Service\ArticleService" ../library/Namespace/Service/ArticleService.php
我希望我的测试进入 /tests/Namespace/Service/ArticleServiceTest.php
是否可以使用 PHPUnit 指定此类选项?
I'm trying to generate TestCase with the phpunit generator.
I'm using the following command:
phpunit --skeleton-test "Namespace\Service\ArticleService" ../library/Namespace/Service/ArticleService.php
I'd like my tests to go in /tests/Namespace/Service/ArticleServiceTest.php
Is it possible to specify such options with PHPUnit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是不可能的。在 github 上的 phpunit bug 跟踪器中打开功能请求。
No, it is not possible. Open a feature request in the phpunit bug tracker on github.
较新的 phpunit-skelgen (1.2.0) 允许您指定测试的目标文件,其中可能包括路径引用。
The newer phpunit-skelgen (1.2.0) allows you to specify the destination file for tests, which may include path references.