Uh oh!
There was an error while loading. Please reload this page.
forked from jaworrom/GravityView
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
38 lines (38 loc) · 955 Bytes
/
Copy pathphpunit.xml
File metadata and controls
38 lines (38 loc) · 955 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
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
>
<php>
<constname="DOING_GRAVITYVIEW_TESTS"value="1" />
</php>
<testsuites>
<testsuitename="GravityView Test Suite">
<directorysuffix=".php">./tests/unit-tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ajax</group>
</exclude>
</groups>
<filter>
<whitelistprocessUncoveredFilesFromWhitelist="false">
<directorysuffix=".php">./</directory>
<exclude>
<directory>./tests/</directory>
<directory>./vendor/</directory>
<directory>./includes/lib/</directory>
<directory>./future/lib/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<logtype="coverage-clover"target="/tmp/clover.xml"charset="UTF-8" />
</logging>
</phpunit>