35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="false"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="./bootstrap.php"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="Wootook Core module - Unit tests">
|
|
<directory>./php/WootookUnit/Core</directory>
|
|
</testsuite>
|
|
<!--
|
|
<testsuite name="Wootook Core module - Integration tests">
|
|
<directory>./php/WootookIntegration/Core</directory>
|
|
</testsuite>
|
|
-->
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">../src/Wootook/Core</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<!-- -->
|
|
<logging>
|
|
<log type="coverage-html" target="./coverage/unit/html" charset="UTF-8" yui="true" highlight="false" lowUpperBound="40" highLowerBound="80"/>
|
|
</logging>
|
|
<!-- -->
|
|
</phpunit>
|