| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit |
| 3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 |
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" |
| 5 |
bootstrap="tests/phpunit/bootstrap.php" |
| 6 |
backupGlobals="false" |
| 7 |
colors="true" |
| 8 |
beStrictAboutTestsThatDoNotTestAnything="true" |
| 9 |
beStrictAboutOutputDuringTests="true" |
| 10 |
verbose="true"> |
| 11 |
<testsuites> |
| 12 |
<testsuite name="DesignSetGo"> |
| 13 |
<directory suffix="-test.php">./tests/phpunit</directory> |
| 14 |
</testsuite> |
| 15 |
<testsuite name="DesignSetGo Integration"> |
| 16 |
<directory suffix="Test.php">./tests/integration</directory> |
| 17 |
</testsuite> |
| 18 |
</testsuites> |
| 19 |
<coverage> |
| 20 |
<include> |
| 21 |
<directory suffix=".php">./includes</directory> |
| 22 |
</include> |
| 23 |
<exclude> |
| 24 |
<directory>./vendor</directory> |
| 25 |
<directory>./tests</directory> |
| 26 |
</exclude> |
| 27 |
</coverage> |
| 28 |
<php> |
| 29 |
<env name="WP_TESTS_DOMAIN" value="example.org"/> |
| 30 |
<env name="WP_TESTS_EMAIL" value="admin@example.org"/> |
| 31 |
<env name="WP_TESTS_TITLE" value="Test Blog"/> |
| 32 |
<env name="WP_PHP_BINARY" value="php"/> |
| 33 |
<env name="WP_TESTS_FORCE_KNOWN_BUGS" value="false"/> |
| 34 |
<env name="WP_DEBUG" value="true"/> |
| 35 |
</php> |
| 36 |
</phpunit> |
| 37 |
|