1
0
Fork 0
mirror of synced 2024-05-19 20:22:33 +12:00
appwrite/phpunit.xml

39 lines
1.8 KiB
XML
Raw Normal View History

2019-05-09 18:54:39 +12:00
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
2021-09-07 01:33:29 +12:00
stopOnFailure="false"
2019-09-14 16:37:37 +12:00
>
2021-03-22 03:27:50 +13:00
<extensions>
<extension class="Appwrite\Tests\TestHook" />
</extensions>
2019-05-09 18:54:39 +12:00
<testsuites>
2021-04-26 21:34:15 +12:00
<testsuite name="unit">
2021-04-24 03:05:17 +12:00
<directory>./tests/unit/</directory>
2021-04-26 21:34:15 +12:00
</testsuite>
2021-04-26 22:12:49 +12:00
<testsuite name="e2e">
<file>./tests/e2e/Client.php</file>
<directory>./tests/e2e/General</directory>
<directory>./tests/e2e/Scopes</directory>
<directory>./tests/e2e/Services/Account</directory>
<directory>./tests/e2e/Services/Realtime</directory>
<directory>./tests/e2e/Services/Avatars</directory>
<directory>./tests/e2e/Services/Database</directory>
<directory>./tests/e2e/Services/Health</directory>
<directory>./tests/e2e/Services/Locale</directory>
<directory>./tests/e2e/Services/Projects</directory>
<directory>./tests/e2e/Services/Storage</directory>
<directory>./tests/e2e/Services/Teams</directory>
<directory>./tests/e2e/Services/Users</directory>
<directory>./tests/e2e/Services/Workers</directory>
2021-04-28 21:04:44 +12:00
<directory>./tests/e2e/Services/Webhooks</directory>
<file>./tests/e2e/Services/Functions/FunctionsBase.php</file>
<file>./tests/e2e/Services/Functions/FunctionsCustomServerTest.php</file>
<file>./tests/e2e/Services/Functions/FunctionsCustomClientTest.php</file>
2019-05-09 18:54:39 +12:00
</testsuite>
</testsuites>
</phpunit>