31 lines
959 B
XML
31 lines
959 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="true"
|
|
syntaxCheck="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="phpDocumentor\GraphViz">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml" />
|
|
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false" />
|
|
</logging>
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|