forked from godaddy-wordpress/go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 724 Bytes
/
phpunit.xml
File metadata and controls
27 lines (27 loc) · 724 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
<phpunit
bootstrap=".dev/tests/php/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Go Test Suite">
<directory prefix="test-" suffix=".php">./.dev/tests/php/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<directory suffix=".php">./node_modules</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./build</directory>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_THEME_TEST" value="true"/>
</php>
</phpunit>