framework/phpunit.xml

23 lines
695 B
XML
Raw Normal View History

<?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">
<testsuites>
<testsuite name="installation">
<directory suffix="Test.php">./tests/Install</directory>
</testsuite>
<testsuite name="all">
<directory suffix="Test.php">./tests</directory>
<exclude>./tests/Install</exclude>
</testsuite>
</testsuites>
</phpunit>