xref: /plugin/upgrade/myvendor/splitbrain/php-archive/phpunit.xml (revision ab8e5256dbaece2751c4414d6cf7b761cb71998a)
1*ab8e5256SAndreas Gohr<?xml version="1.0" encoding="UTF-8"?>
2*ab8e5256SAndreas Gohr<phpunit backupGlobals="false"
3*ab8e5256SAndreas Gohr         backupStaticAttributes="false"
4*ab8e5256SAndreas Gohr         bootstrap="vendor/autoload.php"
5*ab8e5256SAndreas Gohr         colors="true"
6*ab8e5256SAndreas Gohr         convertErrorsToExceptions="true"
7*ab8e5256SAndreas Gohr         convertNoticesToExceptions="true"
8*ab8e5256SAndreas Gohr         convertWarningsToExceptions="true"
9*ab8e5256SAndreas Gohr         processIsolation="false"
10*ab8e5256SAndreas Gohr         stopOnFailure="false">
11*ab8e5256SAndreas Gohr    <testsuites>
12*ab8e5256SAndreas Gohr        <testsuite name="Test Suite">
13*ab8e5256SAndreas Gohr            <directory suffix=".php">./tests/</directory>
14*ab8e5256SAndreas Gohr        </testsuite>
15*ab8e5256SAndreas Gohr    </testsuites>
16*ab8e5256SAndreas Gohr    <filter>
17*ab8e5256SAndreas Gohr        <whitelist processUncoveredFilesFromWhitelist="false">
18*ab8e5256SAndreas Gohr            <directory suffix=".php">src</directory>
19*ab8e5256SAndreas Gohr        </whitelist>
20*ab8e5256SAndreas Gohr    </filter>
21*ab8e5256SAndreas Gohr</phpunit>
22