1
0
Fork 0
composer/tests/phpunit.xml.dist

29 lines
798 B
Plaintext
Raw Normal View History

<?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="./bootstrap.php"
>
<testsuites>
<testsuite name="Full Composer Test Suite">
<directory>./Composer/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>../src/Composer/</directory>
<exclude>
<file>../src/Composer/Autoload/ClassLoader.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>