Files
bodyrep-sandpit/br/app/phpunit.xml.dist
Alex Lewis d6e23f1b44 neh
2012-09-22 13:20:27 +10:00

33 lines
1005 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "bootstrap.php.cache" >
<testsuites>
<testsuite name="BodyRep Test">
<directory>../src/BodyRep/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>../src</directory>
<exclude>
<directory>../src/BodyRep/Resources</directory>
<directory>../src/BodyRep/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>