我正在尝试在Windows 10命令提示符下使用phpunit.xml配置为PHPUnit设置/启用颜色。但是出于一些有趣的奇怪原因,它似乎不起作用。到目前为止,这是我尝试过的:
<?xml version="1.0" ?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/|version|/phpunit.xsd"
columns="max"
colors="true"
bootstrap="vendor/autoload.php"
verbose="true"
stopOnFailure="false"
stopOnError="false"
stopOnRisky="false"
stopOnWarning="false"
stopOnIncomplete="false"
>
<testsuites>
...
</testsuites>
</phpunit>
当我通过这样的命令参数设置它时,它也起作用
.\vendor\bin\phpunit --colors=always
但是出于方便的原因,我想通过xml进行设置。谢谢