34 lines
998 B
Plaintext
34 lines
998 B
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
|
||
|
<phpunit
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
|
||
|
backupGlobals="false"
|
||
|
colors="false"
|
||
|
bootstrap="vendor/autoload.php"
|
||
|
backupStaticAttributes="false"
|
||
|
convertErrorsToExceptions="false"
|
||
|
convertNoticesToExceptions="false"
|
||
|
convertWarningsToExceptions="false"
|
||
|
processIsolation="true"
|
||
|
stopOnError="false"
|
||
|
stopOnFailure="false"
|
||
|
>
|
||
|
<coverage>
|
||
|
<include>
|
||
|
<directory>Transport</directory>
|
||
|
</include>
|
||
|
<report>
|
||
|
<clover outputFile="coverage.xml"/>
|
||
|
</report>
|
||
|
</coverage>
|
||
|
<testsuites>
|
||
|
<testsuite name="Project Test Suite">
|
||
|
<directory>Tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<logging>
|
||
|
<junit outputFile="test-report.xml"/>
|
||
|
</logging>
|
||
|
</phpunit>
|