wiki.techinc.nl/tests/phpunit/suite.xml
Antoine Musso e9698b09d8 enable colors in PHPUnit (redoing r89179).
suite.xml now comes with colors=true. Under Windows, we override the
setting by forging a --no-colors. One can still force color usage
under windows by using --colors.
2011-08-16 18:23:13 +00:00

37 lines
972 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- colors don't work on Windows! -->
<phpunit bootstrap="./bootstrap.php"
colors="true"
backupGlobals="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
strict="true"
verbose="true">
<testsuites>
<testsuite name="includes">
<directory>./includes</directory>
</testsuite>
<testsuite name="languages">
<directory>./languages</directory>
</testsuite>
<testsuite name="skins">
<directory>./skins</directory>
</testsuite>
<testsuite name="uploadfromurl">
<file>./suites/UploadFromUrlTestSuite.php</file>
</testsuite>
<testsuite name="extensions">
<file>./suites/ExtensionsTestSuite.php</file>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>Utility</group>
<group>Broken</group>
<group>Stub</group>
</exclude>
</groups>
</phpunit>