31 lines
872 B
XML
31 lines
872 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
verbose="true"
|
|
>
|
|
<php>
|
|
<!-- To override, "export PORT=8081" -->
|
|
<env name="PORT" value="8080" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="WellRESTed Test Suite">
|
|
<directory>./test/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-html" target="./report" charset="UTF-8" hightlight="true" />
|
|
</logging>
|
|
</phpunit>
|