2017-01-04 23:25:06 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- Run tests using phpunit -c doc/phpunit.xml -->
|
|
|
|
<phpunit
|
2017-02-08 00:02:06 +01:00
|
|
|
colors="true"
|
|
|
|
backupGlobals="false"
|
2017-04-04 18:31:30 +02:00
|
|
|
bootstrap="phpunit_bootstrap.php"
|
2017-02-08 00:02:06 +01:00
|
|
|
>
|
2017-01-04 23:25:06 +01:00
|
|
|
<php>
|
|
|
|
<var name="EGW_DOMAIN" value="default" />
|
|
|
|
<var name="EGW_USER" value="demo" />
|
|
|
|
<var name="EGW_PASSWORD" value="guest" />
|
|
|
|
</php>
|
|
|
|
<testsuites>
|
2017-10-17 17:08:23 +02:00
|
|
|
<testsuite name="Api">
|
2017-10-18 15:43:35 +02:00
|
|
|
<directory>../api/tests</directory>
|
2017-01-04 23:25:06 +01:00
|
|
|
<directory>../api/src/test/</directory>
|
2017-02-08 00:02:06 +01:00
|
|
|
<directory>../api/src/*/test/</directory>
|
2017-01-04 23:25:06 +01:00
|
|
|
</testsuite>
|
2017-10-17 17:08:23 +02:00
|
|
|
<testsuite name="Etemplate">
|
2017-10-18 15:43:35 +02:00
|
|
|
<file>../api/src/tests/EtemplateTest.php</file>
|
|
|
|
<directory>../api/src/Etemplate/tests/</directory>
|
|
|
|
<directory>../api/src/Etemplate/Widget/tests/</directory>
|
2017-10-17 17:08:23 +02:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Apps">
|
|
|
|
<!-- Apps with test directory -->
|
2017-10-18 11:42:03 +02:00
|
|
|
<directory>../*/tests/</directory>
|
2017-10-17 17:08:23 +02:00
|
|
|
|
|
|
|
<exclude>../api</exclude>
|
2017-01-04 23:25:06 +01:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
</phpunit>
|