I have been trying to use PHPUnit to test my app, (I installed it via Composer) but when I was trying to execute the tests that I have in my directory called "Tests" in this way:
@myappsite$:php vendor\bin\phpunit Tests
It just printed the content of vendor\bin\phpunit :
SRC_DIR="`pwd`"
cd "`dirname "$0"`"
cd "../phpunit/phpunit"
BIN_TARGET="`pwd`/phpunit"
cd "$SRC_DIR"
"$BIN_TARGET" "$@"
Somebody that has ran into this problem before and can help me please. Thanks by advance.