-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
21 lines (21 loc) · 981 Bytes
/
phpunit.xml.dist
File metadata and controls
21 lines (21 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/php/bootstrap.php" backupGlobals="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" convertDeprecationsToExceptions="true" cacheResult="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">.</directory>
</include>
<exclude>
<directory>./bin</directory>
<directory>./tests</directory>
<directory>./vendor</directory>
<directory>./node_modules</directory>
<directory>./wordpress</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="secure-custom-fields">
<directory prefix="test" suffix=".php">./tests/php/</directory>
<directory suffix="Test.php">./tests/php/</directory>
</testsuite>
</testsuites>
</phpunit>