calc/phpunit.xml.dist
2022-06-19 11:30:51 +02:00

20 lines
628 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"
bootstrap = "vendor/autoload.php" >
<testsuites>
<testsuite name="Calc Tests Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
</phpunit>