| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit |
| 3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 |
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
| 5 |
bootstrap="tests/bootstrap.php" |
| 6 |
colors="true" |
| 7 |
cacheResultFile=".phpunit.cache/test-results" |
| 8 |
> |
| 9 |
<php> |
| 10 |
<env name="WP_TESTS_DIR" value="vendor/wp-phpunit/wp-phpunit" /> |
| 11 |
<env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/wp-tests-config.php" /> |
| 12 |
</php> |
| 13 |
<testsuites> |
| 14 |
<testsuite name="default"> |
| 15 |
<directory>tests</directory> |
| 16 |
</testsuite> |
| 17 |
</testsuites> |
| 18 |
<coverage> |
| 19 |
<include> |
| 20 |
<directory suffix=".php">app</directory> |
| 21 |
</include> |
| 22 |
</coverage> |
| 23 |
</phpunit> |
| 24 |
|