1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4         bootstrap="./test/bootstrap.php"
5         colors="true">
6    <testsuites>
7        <testsuite name="zend-validator Test Suite">
8            <directory>./test/</directory>
9        </testsuite>
10    </testsuites>
11
12    <groups>
13        <exclude>
14            <group>disable</group>
15        </exclude>
16    </groups>
17
18    <filter>
19        <whitelist addUncoveredFilesFromWhitelist="true">
20            <directory suffix=".php">./src</directory>
21        </whitelist>
22    </filter>
23
24    <php>
25        <ini name="date.timezone" value="UTC"/>
26
27        <!-- OB_ENABLED should be enabled for some tests to check if all
28             functionality works as expected. Such tests include those for
29             Zend\Soap and Zend\Session, which require that headers not be sent
30             in order to work. -->
31        <const name="TESTS_ZEND_OB_ENABLED" value="false" />
32
33        <const name="TESTS_ZEND_VALIDATOR_ONLINE_ENABLED" value="false" />
34    </php>
35</phpunit>
36