propel-bundle/phpunit.xml.dist
2013-06-09 00:19:30 +02:00

31 lines
822 B
XML

<?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">
<php>
<!-- <server name="SYMFONY" value="/path/to/symfony" /> -->
</php>
<testsuites>
<testsuite name="PropelBundle Test Suite">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./vendor</directory>
<directory>./Resources</directory>
</exclude>
</whitelist>
</filter>
</phpunit>