2011-04-05 15:37:19 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="false"
|
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Composer Test Suite">
|
|
|
|
<directory>./tests/Composer/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2012-05-06 13:10:13 +00:00
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>slow</group>
|
2016-02-25 13:10:46 +00:00
|
|
|
<group>legacy</group>
|
2012-05-06 13:10:13 +00:00
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
|
2011-04-05 15:37:19 +00:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory>./src/Composer/</directory>
|
2012-01-15 12:50:29 +00:00
|
|
|
<exclude>
|
|
|
|
<file>./src/Composer/Autoload/ClassLoader.php</file>
|
|
|
|
</exclude>
|
2011-04-05 15:37:19 +00:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|