phpUnit-pear安装问题

时间:2012-10-22 21:02:43

标签: installation phpunit pear

我正在从github安装一个名为gitlist的项目,你可以找到它here。我安装了composer,以便管理所有依赖项。但是当使用ant构建时,我总是会有一条消息告诉我构建失败了尝试执行phpUnit

     [exec] PHPUnit 3.7.8 by Sebastian Bergmann.
     [exec] 
     [exec] Configuration read from /myroot/Sites/gitproject/gitlist/phpunit.xml.dist
     [exec] 
     [exec] .....F
     [exec] 
     [exec] Time: 3 seconds, Memory: 22.50Mb
     [exec] 
     [exec] There was 1 failure:
     [exec] 
     [exec] 1) InterfaceTest::testHistoryPage
     [exec] Failed asserting that false is true.
     [exec] 
     [exec] /myroot/Sites/gitproject/gitlist/tests/InterfaceTest.php:154
     [exec] 
            FAILURES!
            Tests: 6, Assertions: 42, Failures: 1.

     [exec] Generating code coverage report in Clover XML format ...
     [exec]  done

BUILD FAILED
/myroot/Sites/gitlist/build.xml:74: exec returned: 1

and the 74 line corresponds to `<exec executable="phpunit" failonerror="true"/>`

事实上,我已经安装了带梨的phpUnit,它似乎有效。认为这可能是phpUnit的安装问题,我试图再次从pear安装它,但现在我有这样的消息:

phpunit/PHPUnit is already installed and is the same as the released version 3.7.8
install failed

顺便说一句,运行此命令:phpunit,我收到此消息

Generating code coverage report in Clover XML format ...PHP Warning:  DOMDocument::save(/Users/mehdibenchoufi/Desktop/Sites/gitproject/gitlist/build/logs/clover.xml): failed to open stream: Permission denied in /usr/local/share/pear/PHP/CodeCoverage/Report/Clover.php on line 341
PHP Stack trace:
PHP   1. {main}() /usr/local/bin/phpunit:0
PHP   2. PHPUnit_TextUI_Command::main() /usr/local/bin/phpunit:46
PHP   3. PHPUnit_TextUI_Command->run() /usr/local/share/pear/PHPUnit/TextUI/Command.php:129
PHP   4. PHPUnit_TextUI_TestRunner->doRun() /usr/local/share/pear/PHPUnit/TextUI/Command.php:176
PHP   5. PHP_CodeCoverage_Report_Clover->process() /usr/local/share/pear/PHPUnit/TextUI/TestRunner.php:362
PHP   6. DOMDocument->save() /usr/local/share/pear/PHP/CodeCoverage/Report/Clover.php:341

1 个答案:

答案 0 :(得分:1)

这不是错误。

PHPUnit可以运行并运行测试。一次测试失败:Tests: 6, Assertions: 42, Failures: 1.

这不是PHPUnit的错;它工作正常。