2

gitlist という名前の github からプロジェクトをインストールしています。ここで見つけることができます。すべての依存関係を管理するために、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"/>`

実際、すでに pear で 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
4

1 に答える 1

1

これはエラーではありません。

PHPUnit は動作し、テストを実行しました。1 つのテストが失敗しました:Tests: 6, Assertions: 42, Failures: 1.

これは PHPUnit のせいではありません。それはうまくいっています。

于 2013-01-02T08:25:13.423 に答える