appwrite/phpunit.xml

38 lines
1.7 KiB
XML
Raw Normal View History

2019-05-09 06:54:39 +00:00
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
2019-09-14 04:37:37 +00:00
>
2021-03-21 14:27:50 +00:00
<extensions>
<extension class="Appwrite\Tests\TestHook" />
</extensions>
2019-05-09 06:54:39 +00:00
<testsuites>
2021-04-26 09:34:15 +00:00
<testsuite name="unit">
2021-04-23 15:05:17 +00:00
<directory>./tests/unit/</directory>
2021-04-26 09:34:15 +00:00
</testsuite>
2021-04-26 10:12:49 +00:00
<testsuite name="e2e">
<file>./tests/e2e/Client.php</file>
<directory>./tests/e2e/General</directory>
<directory>./tests/e2e/Scopes</directory>
2021-04-27 14:33:47 +00:00
<directory>./tests/e2e/Services/Projects</directory>
<directory>./tests/e2e/Services/Account</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/Storage</directory>
<directory>./tests/e2e/Services/Teams</directory>
<directory>./tests/e2e/Services/Users</directory>
<directory>./tests/e2e/Services/Workers</directory>
2021-04-28 09:04:44 +00: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 06:54:39 +00:00
</testsuite>
</testsuites>
</phpunit>