1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:noNamespaceSchemaLocation="http://phpunit.de/phpunit.xsd"
4         backupGlobals="false"
5         bootstrap="../vendor/autoload.php"
6         colors="true"
7         verbose="true">
8  <testsuite name="PHPCPD">
9    <directory suffix="Test.php">../tests</directory>
10  </testsuite>
11
12  <logging>
13    <log type="coverage-text" target="php://stdout"/>
14  </logging>
15
16  <filter>
17    <whitelist processUncoveredFilesFromWhitelist="true">
18      <directory suffix=".php">../src</directory>
19      <exclude>
20       <file>../src/autoload.php</file>
21      </exclude>
22    </whitelist>
23  </filter>
24</phpunit>
25