Tweaked phpunit.xml

This commit is contained in:
Grégoire Pineau 2013-02-17 22:12:33 +01:00
parent 4d0e19b84c
commit c967279413
2 changed files with 28 additions and 20 deletions

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
stopOnError="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Carew Test Suite">
<directory>Carew/Tests/</directory>
</testsuite>
</testsuites>
</phpunit>

28
phpunit.xml.dist Normal file
View File

@ -0,0 +1,28 @@
<?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="vendor/autoload.php"
>
<testsuites>
<testsuite name="Carew Test Suite">
<directory>Carew/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>Carew</directory>
<exclude>
<directory>Carew/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>