-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (26 loc) · 861 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (26 loc) · 861 Bytes
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
<phpunit
bootstrap="tests/phpunit/bootstrap.php"
backupGlobals="false"
processIsolation="false"
colors="true">
<testsuites>
<testsuite name="Subscribe With Google Test Suite">
<directory suffix=".php">./tests/phpunit/integration</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="32767" />
<ini name="display_errors" value="1" />
<ini name="display_startup_errors" value="1" />
<const name="SUBSCRIBEWITHGOOGLE_TESTS" value="1" />
</php>
<filter>
<whitelist>
<directory suffix=".php">includes</directory>
<exclude>
<file>includes/loader.php</file>
<directory>includes/vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>