mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
26 lines
745 B
XML
26 lines
745 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Run tests using phpunit -c doc/phpunit.xml -->
|
|
<phpunit
|
|
colors="true"
|
|
backupGlobals="false"
|
|
>
|
|
<php>
|
|
<var name="EGW_DOMAIN" value="default" />
|
|
<var name="EGW_USER" value="demo" />
|
|
<var name="EGW_PASSWORD" value="guest" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Api tests">
|
|
<directory>../api/src/test/</directory>
|
|
<directory>../api/src/*/test/</directory>
|
|
</testsuite>
|
|
<testsuite name="Apps with test directory">
|
|
<directory>../*/test/</directory>
|
|
</testsuite>
|
|
<testsuite name="Apps with namespace">
|
|
<directory>../*/src/test/</directory>
|
|
<directory>../*/src/*/test/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|