-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathphpunit.xml.dist
59 lines (55 loc) · 2.11 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutOutputDuringTests="true"
forceCoversAnnotation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
colors="false">
<testsuites>
<testsuite name="Zend Server DepH Deployment Suite">
<directory>./tests/Deployment</directory>
</testsuite>
<testsuite name="Zend Server DepH File Suite">
<directory>./tests/File</directory>
</testsuite>
<testsuite name="Zend Server DepH Params Suite">
<directory>./tests/Params</directory>
<file phpVersion="7.0" phpVersionOperator="<">./tests/Params/ParamsTestPHP5.php</file>
<file phpVersion="7.0" phpVersionOperator=">=">./tests/Params/ParamsTestPHP7.php</file>
</testsuite>
<testsuite name="Zend Server DepH Path Suite">
<directory>./tests/Path</directory>
</testsuite>
<testsuite name="Zend Server DepH SystemCall Suite">
<directory>./tests/SystemCall</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">src</directory>
<exclude>
<directory suffix=".php">tests/</directory>
</exclude>
</whitelist>
</filter>
<groups>
<exclude>
<group>disable</group>
<group>integration</group>
</exclude>
</groups>
<php>
<ini name="date.timezone" value="UTC"/>
<ini name="memory_limit" value="128M"/>
<ini name="error_reporting" value="-1"/>
<ini name="zend.enable_gc" value="0"/>
</php>
</phpunit>