1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.4/phpunit.xsd"
4         bootstrap="vendor/autoload.php"
5         backupGlobals="false"
6         beStrictAboutCoversAnnotation="true"
7         beStrictAboutOutputDuringTests="true"
8         beStrictAboutTestsThatDoNotTestAnything="true"
9         beStrictAboutTodoAnnotatedTests="true"
10         verbose="true">
11    <testsuite>
12        <directory suffix="Test.php">tests</directory>
13    </testsuite>
14
15    <filter>
16        <whitelist processUncoveredFilesFromWhitelist="true">
17            <directory suffix=".php">src</directory>
18        </whitelist>
19    </filter>
20</phpunit>
21