mirror of
https://github.com/flarum/framework.git
synced 2024-11-22 12:48:28 +08:00
23 lines
681 B
XML
23 lines
681 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">
|
|
|
|
<testsuites>
|
|
<testsuite name="Flarum Integration Tests">
|
|
<directory suffix="Test.php">./integration</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|