2022-01-05 07:27:04 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2024-08-06 23:50:09 +08:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
2022-01-05 07:27:04 +08:00
|
|
|
backupGlobals="false"
|
2024-08-06 23:50:09 +08:00
|
|
|
cacheDirectory=".phpunit.cache"
|
|
|
|
backupStaticProperties="false"
|
2022-01-05 07:27:04 +08:00
|
|
|
colors="true"
|
|
|
|
processIsolation="true"
|
|
|
|
stopOnFailure="false"
|
2023-06-15 20:26:39 +08:00
|
|
|
bootstrap="../../../php-packages/testing/bootstrap/monorepo.php"
|
2022-01-05 07:27:04 +08:00
|
|
|
>
|
2024-08-06 23:50:09 +08:00
|
|
|
<source>
|
2022-01-05 07:27:04 +08:00
|
|
|
<include>
|
|
|
|
<directory suffix=".php">../src/</directory>
|
|
|
|
</include>
|
2024-08-06 23:50:09 +08:00
|
|
|
</source>
|
2022-01-05 07:27:04 +08:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Flarum Integration Tests">
|
|
|
|
<directory suffix="Test.php">./integration</directory>
|
2022-03-12 07:02:51 +08:00
|
|
|
<exclude>./integration/tmp</exclude>
|
2022-01-05 07:27:04 +08:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
</phpunit>
|