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