mirror of
https://github.com/bodyrep/bodyrep-sandpit.git
synced 2026-01-26 06:41:41 +00:00
33 lines
1005 B
XML
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>
|