12345678910111213141516171819202122232425262728293031 |
- <?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>
|