37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit
|
||
|
colors="true"
|
||
|
stopOnFailure="false"
|
||
|
bootstrap="../tests/bootstrap.php"
|
||
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||
|
checkForUnintentionallyCoveredCode="true"
|
||
|
>
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">../src/Aviat/Ion</directory>
|
||
|
<directory suffix=".php">../src/Aviat/AnimeClient</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
<testsuites>
|
||
|
<testsuite name="Ion">
|
||
|
<directory>../tests/Ion</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="AnimeClient">
|
||
|
<directory>../tests/AnimeClient</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<logging>
|
||
|
<log type="coverage-html" target="coverage"/>
|
||
|
<log type="coverage-clover" target="logs/clover.xml"/>
|
||
|
<log type="coverage-crap4j" target="logs/crap4j.xml"/>
|
||
|
<log type="coverage-xml" target="logs/coverage" />
|
||
|
<log type="junit" target="logs/junit.xml" logIncompleteSkipped="false"/>
|
||
|
</logging>
|
||
|
<php>
|
||
|
<server name="HTTP_USER_AGENT" value="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Firefox/38.0" />
|
||
|
<server name="HTTP_HOST" value="localhost" />
|
||
|
<server name="SERVER_NAME" value="localhost" />
|
||
|
<server name="REQUEST_URI" value="/" />
|
||
|
<server name="REQUEST_METHOD" value="GET" />
|
||
|
</php>
|
||
|
</phpunit>
|