在Debian VM上运行PHPUnit

时间:2018-09-27 20:45:04

标签: php phpunit debian vagrant magento2

我正在使用Vagrant Debian VM上安装的Magento 2.2.4。我已经使用composer安装了phpunit 6.2.4。当我按照Magento 2 docs运行测试时,我的CLI仅打印出phpunit文件中的文本:

dir=$(cd "${0%[/\\]*}" > /dev/null; cd '../phpunit/phpunit' && pwd)

     if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then
        # We are in Cgywin using Windows php, so the path must be translated
        dir=$(cygpath -m "$dir");
     fi

"${dir}/phpunit" "$@"

在这种情况下,如何使phpunit正常运行?

0 个答案:

没有答案