1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-08-05 22:37:45 +02:00
Files
phpapprentice/phpunit.xml
2018-09-02 10:57:36 -05:00

16 lines
466 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./test</directory>
</testsuite>
</testsuites>
</phpunit>