| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit |
| 3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 |
bootstrap="tests/phpunit/bootstrap.php" |
| 5 |
colors="true" |
| 6 |
convertErrorsToExceptions="true" |
| 7 |
convertNoticesToExceptions="true" |
| 8 |
convertWarningsToExceptions="true" |
| 9 |
convertDeprecationsToExceptions="true" |
| 10 |
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"> |
| 11 |
<coverage processUncoveredFiles="true"> |
| 12 |
<include> |
| 13 |
<directory suffix=".php">lib</directory> |
| 14 |
</include> |
| 15 |
</coverage> |
| 16 |
<testsuites> |
| 17 |
<testsuite name="unit"> |
| 18 |
<directory prefix="test-" suffix=".php">tests/phpunit/</directory> |
| 19 |
<exclude>tests/phpunit/multisite/</exclude> |
| 20 |
</testsuite> |
| 21 |
</testsuites> |
| 22 |
<php> |
| 23 |
<server name="REQUEST_URI" value="https://wordpress.discourse.org"/> |
| 24 |
</php> |
| 25 |
</phpunit> |
| 26 |
|