1<?xml version="1.0" encoding="UTF-8"?>
2
3<phpunit
4    backupGlobals               = "false"
5    backupStaticAttributes      = "false"
6    colors                      = "true"
7    convertErrorsToExceptions   = "true"
8    convertNoticesToExceptions  = "true"
9    convertWarningsToExceptions = "true"
10    processIsolation            = "false"
11    stopOnFailure               = "false"
12    syntaxCheck                 = "false"
13    bootstrap                   = "vendor/autoload.php"
14>
15    <testsuites>
16        <testsuite name="FINDOLOGIC XMl export toolkit tests">
17            <directory>./tests</directory>
18        </testsuite>
19    </testsuites>
20
21    <filter>
22        <whitelist>
23            <directory>src</directory>
24        </whitelist>
25    </filter>
26</phpunit>
27