嗨我已经安装了 PHPUnit 使用
curl https://phar.phpunit.de/phpunit.phar -o phpunit.phar
chmod +x phpunit.phar
mv phpunit.phar /usr/local/bin/phpunit
我正在使用 PHPUnit 、 Eclipse 和 Makegood 。
我在我的测试文件夹中使用 composer 安装了另一个 PHPUnit,因为我发现 Makegood 不能与 PHPUnit phar 一起使用。
目前我有这个错误。
[PHPUnit_Framework_Exception]
Argument #3 (No Value) of PHPUnit_TextUI_ResultPrinter::__construct() must be a value from "never", "auto" or "always"
phpunit [-p|--preload-script="..."] [-c|--config="..."] [-R|--recursive] [-a|--autotest] [-w|--watch-dir="..."] [-m|--notify] [-d|--detailed-progress] [-s|--stop-on-failure] [--log-junit="..."] [--log-junit-realtime] [--test-file-pattern="..."] [--test-method="..."] [--test-class="..."] [--phpunit-config="..."] [test_directory_or_file1] ... [test_directory_or_fileN]
一个建议是删除 PHPUnit.phar 安装。
有什么命令可以用来完全删除我的旧 PHPunit 安装。我搜索了很多,但我找不到任何 .
提前致谢 。