1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
bootstrap="bootstrap.php"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<coverage/>
<testsuites>
<testsuite name="Logon">
<directory suffix="Test.php">Logon</directory>
</testsuite>
<testsuite name="Contacts">
<directory suffix="Test.php">Contacts</directory>
</testsuite>
<testsuite name="Settings">
<directory suffix="Test.php">Settings</directory>
</testsuite>
<testsuite name="Mail">
<directory suffix="Test.php">Mail</directory>
</testsuite>
<testsuite name="Plugins">
<directory suffix="Test.php">../../plugins/*/tests/Browser</directory>
</testsuite>
</testsuites>
</phpunit>
|