forked from auth0/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
31 lines (31 loc) · 761 Bytes
/
phpunit.xml.dist
File metadata and controls
31 lines (31 loc) · 761 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
<?xml version="1.0"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
>
<filter>
<whitelist>
<directory suffix=".php">./lib</directory>
<file>./WP_Auth0.php</file>
<exclude>
<directory>./lib/dashboard-widgets</directory>
<directory>./lib/php-jwt</directory>
<directory>./lib/twitter-api-php</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite>
<directory prefix="test" suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
</php>
</phpunit>