| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <phpunit
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
- colors="true"
- beStrictAboutOutputDuringTests="false"
- beStrictAboutTestsThatDoNotTestAnything="true"
- verbose="true"
- bootstrap="./tests/bootstrap.php"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- convertDeprecationsToExceptions="false"
- stopOnFailure="false">
- <testsuites>
- <testsuite name="Test Suite">
- <directory>./tests</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
- <directory suffix=".php">.</directory>
- <exclude>
- <directory>./vendor</directory>
- <directory>./tests</directory>
- </exclude>
- </whitelist>
- </filter>
- <logging>
- <log type="coverage-clover" target="build/logs/clover.xml"/>
- </logging>
- </phpunit>
|