4

我正在学习 Zend Framework2 教程,我已经到了最后(让 phpunit 运行):

http://framework.zend.com/manual/2.1/en/user-guide/unit-testing.html

我将 "phpunit/phpunit": "3.7.*" 包含在我的 composer.json 文件中,对其进行了更新,看起来它已安装到我项目的 "Vendor" 目录中。

我现在如何使用它?我在 Mac 上。我在这部分:最后,cd 到 zf-tutorial/module/Application/test/ 并运行 phpunit。因为我的 $PATH 中没有安装 phpunit,所以我使用哪个文件作为可执行文件?任何帮助将非常感激。

这是我的文件夹结构。在此处输入图像描述

4

1 回答 1

2

通过composer安装时使用phpunit必须运行的命令是./vendor/bin/phpunit

您可以在http://getcomposer.org/doc/articles/vendor-binaries.md阅读有关 composer 如何处理二进制文件的更多信息

于 2013-02-11T01:47:37.180 回答