2019-05-10 14:07:15 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-02-04 21:46:38 +01:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="../vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Main">
|
|
|
|
<directory>../tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2020-02-05 17:18:22 +01:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">../src</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2020-02-04 21:46:38 +01:00
|
|
|
</phpunit>
|