-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml.dist
26 lines (24 loc) · 919 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="test/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertDeprecationsToExceptions="false">
<testsuites>
<testsuite name="zend-cache Redis Array Extension Test Suite">
<directory>./test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<php>
<ini name="display_errors" value="On" />
<!-- E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED -->
<ini name="error_reporting" value="8191" />
<ini name="display_startup_errors" value="On" />
</php>
</phpunit>