Saída estranha do PHPUnit

Eu instalei o PHPUnit através do PEAR, e também instalei o WordPress Plugin Test (https://github.com/tierra/wordpress-plugin-tests) para testar o meu Plugin WordPress que está em desenvolvimento.

A questão que, enquanto o teste é executado normalmente, estou recebendo o seguinte resultado:

Running as single site... To run multisite, use -c multisite.xml
Not running ajax tests... To execute these, use --group ajax.
PHPUnit 3.7.21 by Sebastian Bergmann.

Configuration read from E:\LocalWebServer\dch\c\my-wp-installtion.dch\wordpress-test\wordpress\wp-content\plugins\myplugin\phpunit.xml

[41;37mF[0m.[36;1mS[0m

Time : 1 second, Memory: 30.50Mb

There was 1 failure:

1) CDOAjax_Tests::test_tests
Failed asserting that false is true.

E:\LocalWebServer\dch\c\my-wp-installtion.dch\wordpress-test\wordpress\wp-content\plugins\myplugin\Tests\test_CDOAjax_tests.php:7

[37;41m[2KFAILURES!
[0m[37;41m[2KTests: 3, Assertions: 2, Failures: 1, Skipped: 1.
[0m[2K

Eu não sei se isso ajuda, mas o phpunit.xml contém o seguinte:

<phpunit
bootstrap="bootstrap_tests.php"
backupGlobals="false"
colors="true"
>
    <testsuites>
        <!-- Default test suite to run all tests -->
        <testsuite name="cabdriver">
            <directory prefix="test_" suffix=".php">tests</directory>
        </testsuite>
    </testsuites>
</phpunit>

Como você pode ver, a saída do PHPUnit possui alguns caracteres estranhos, como a última linha que contém o [0m [2k.

Meu sistema é um Windows 7 e eu corro o XAMPP com o PHPUnit instalado via PEAR

Então, eu posso corrigir esse problema de alguma forma, porque a saída não é tão clara para a leitura.

Atenciosamente

questionAnswers(1)

yourAnswerToTheQuestion