2

PHPUnit/PHP Code Coverage と Xdebugにはまだ問題があるので、別の方法で試してみることにしました。phpdbgです。

私は彼が示したようにそれをしまし。CMD と Git Bash でも試してみましたが、結果は同じで失敗しました:

$ composer info | grep "phpunit"
phpunit/php-code-coverage           4.0.0  Library that provides collectio...
phpunit/php-file-iterator           1.4.1  FilterIterator implementation t...
phpunit/php-text-template           1.2.1  Simple template engine.
phpunit/php-timer                   1.0.8  Utility class for timing
phpunit/php-token-stream            1.4.8  Wrapper around PHP's tokenizer ...
phpunit/phpunit                     5.4.6  The PHP Unit Testing framework.
phpunit/phpunit-mock-objects        3.2.3  Mock Object library for PHPUnit

$ phpdbg -qrr ./vendor/bin/phpunit -v

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

# See if we are running in Cygwin by checking for cygpath program
if command -v 'cygpath' >/dev/null 2>&1; then
        # Cygwin paths start with /cygdrive/ which will break windows PHP,
        # so we need to translate the dir path to windows format. However
        # we could be using cygwin PHP which does not require this, so we
        # test if the path to PHP starts with /cygdrive/ rather than /usr/bin
        if [[ $(which php) == /cygdrive/* ]]; then
                dir=$(cygpath -m "$dir");
        fi
fi

dir=$(echo $dir | sed 's/ /\ /g')
"${dir}/phpunit" "$@"

PHPUnit & PHP Code Coverage & phpdbg の組み合わせを Windows Server で動作させるにはどうすればよいですか?

4

1 に答える 1

7

Windows では、ファイルvendor/binは実際にはバッチ ファイルであり、元のファイルを呼び出しているようです (phpdbg が理解できる php ファイルではありません)。

この場合:

dir=$(d=${0%[/\\]*}; cd "$d"; cd "../phpunit/phpunit" && pwd)
                                  ^^^^^^^^^^^^^^^^^^
"${dir}/phpunit" "$@"
 ^^^^^^^^^^^^^^

つまり../phpunit/phpunit/phpunit(このパスは からの相対パスですvendor/bin); したがって、実際のファイルは にありvendor/phpunit/phpunit/phpunitます。

そして、then 経由で直接呼び出すことができますphpdbg -qrr vendor/phpunit/phpunit/phpunit

于 2016-11-07T09:24:44.120 に答える