-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 800 Bytes
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 800 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
<phpunit
bootstrap=".dev/tests/php/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Simple Taxonomy Ordering Test Suite">
<directory prefix="test-" suffix=".php">./.dev/tests/php/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<file>./yikes-custom-taxonomy-order.php</file>
<directory>./lib</directory>
<exclude>
<directory suffix=".php">./build</directory>
<directory suffix=".php">./node_modules</directory>
<directory suffix=".php">./vendor</directory>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_PLUGIN_TEST" value="true"/>
</php>
</phpunit>