forked from WP-API/WP-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
30 lines (28 loc) · 731 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
30 lines (28 loc) · 731 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
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<!-- Default test suite to run all tests -->
<testsuite>
<directory prefix="test-" suffix=".php">tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="coverage" title="PHPUnit"
charset="UTF-8" yui="true" highlight="true" />
</logging>
<filter>
<blacklist>
<directory suffix=".php">.</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./lib</directory>
<file>./plugin.php</file>
</whitelist>
</filter>
</phpunit>