InfluxPHP/phpunit.xml
2013-11-12 14:33:37 -03:00

36 lines
1.1 KiB
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"
stopOnError = "true"
stopOnFailure = "true"
stopOnIncomplete = "true"
stopOnSkipped = "ture"
syntaxCheck = "true"
strict = "false"
verbose = "true"
debug = "true"
bootstrap = "tests/bootstrap.php" >
<testsuites>
<testsuite name="InfluxPHP tests">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>tests/</directory>
<directory suffix=".php">lib/</directory>
</whitelist>
</filter>
</phpunit>