57 lines
1.8 KiB
XML
57 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="automated">
|
|
<directory>./tests/automated/</directory>
|
|
</testsuite>
|
|
<!--
|
|
<testsuite name="unit">
|
|
<directory>./tests/unit/</directory>
|
|
</testsuite>
|
|
-->
|
|
</testsuites>
|
|
|
|
<!-- <filter>
|
|
<whitelist>
|
|
<directory>./</directory>
|
|
<exclude>
|
|
<directory>./gulliver</directory>
|
|
<directory>./workflow</directory>
|
|
<directory>./rbac</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter> -->
|
|
|
|
<php>
|
|
<var name="SYS_SYS" value="os" />
|
|
<var name="SYS_LANG" value="en" />
|
|
<var name="SYS_SKIN" value="classic" />
|
|
<var name="DB_ADAPTER" value="mysql" />
|
|
<var name="DB_HOST" value="localhost" />
|
|
<var name="DB_NAME" value="wf_os" />
|
|
<var name="DB_USER" value="root" />
|
|
<var name="DB_PASS" value="password" />
|
|
<var name="PATH_DB" value="tests/shared/" />
|
|
<var name="PATH_DATA" value="tests/shared/" />
|
|
</php>
|
|
|
|
<logging>
|
|
<log type="coverage-html" target="build/coverage" title="ERC"
|
|
charset="UTF-8" yui="true" highlight="true"
|
|
lowUpperBound="10" highLowerBound="20"/>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
|
|
</logging>
|
|
</phpunit>
|