calc/phpunit.xml.dist

21 lines
673 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "true"
stopOnFailure = "false"
syntaxCheck = "true"
bootstrap = "vendor/autoload.php" >
<testsuites>
<testsuite name="Calc Tests Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
</phpunit>