1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
- bootstrap="vendor/autoload.php"
- backupGlobals="false"
- colors="true"
- verbose="true"
- stopOnFailure="false">
- <testsuites>
- <testsuite name="Dot Test Suite">
- <directory>tests</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist processUncoveredFilesFromWhitelist="true">
- <directory suffix=".php">src</directory>
- </whitelist>
- </filter>
- <logging>
- <!-- <log type="coverage-html" target="build/coverage" /> -->
- <!-- <log type="coverage-text" target="php://stdout" /> -->
- </logging>
- </phpunit>
|