vonGruz Thank you for the question.
Currently, the PHPUnit Test Explorer does not have profiles; To customize the command, please use the setting phpunit.command
. The string command can have the following variables:
${phpunit} - will be replaced with phpunit binary path
${phpunitxml} - will be path to corresponding phpunit.xml
${phpunitargs} - the default arguments we provide
${php} - path to php executable
${phpargs} - the default arguments for php we provide
${cwd} - current working directory
I'll update the documentation accordingly.
"phpunit.command"
is by default the following:
"\"${php}\" ${phpargs} \"${phpunit}\" ${phpunitargs}"