2015-09-28 22:09:13 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
2019-07-06 07:49:55 +08:00
|
|
|
stopOnFailure="false">
|
2015-09-28 22:09:13 +08:00
|
|
|
|
|
|
|
<testsuites>
|
2019-01-02 04:11:29 +08:00
|
|
|
<testsuite name="Flarum Unit Tests">
|
|
|
|
<directory suffix="Test.php">./unit</directory>
|
2015-09-28 22:09:13 +08:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2018-05-29 11:51:22 +08:00
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">./src/</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2019-11-21 07:51:11 +08:00
|
|
|
<listeners>
|
|
|
|
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
|
|
|
|
</listeners>
|
2015-09-28 22:09:13 +08:00
|
|
|
</phpunit>
|