NelmioApiDocBundle/phpunit.xml.dist

31 lines
936 B
Plaintext
Raw Permalink Normal View History

2012-04-13 14:11:54 +02:00
<?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"
2012-04-13 14:27:51 +02:00
bootstrap = "Tests/bootstrap.php">
2012-04-13 14:11:54 +02:00
<testsuites>
2012-04-13 14:27:51 +02:00
<testsuite name="NelmioApiDocBundle Test Suite">
2012-04-13 14:11:54 +02:00
<directory>Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>.</directory>
<exclude>
<directory>Resources</directory>
<directory>Tests</directory>
2012-04-13 15:19:04 +02:00
<directory>vendor</directory>
2012-04-13 14:11:54 +02:00
</exclude>
</whitelist>
</filter>
</phpunit>