mirror of
https://github.com/flarum/framework.git
synced 2025-05-18 12:22:34 +08:00
23 lines
695 B
XML
23 lines
695 B
XML
<?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>
|