| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<!-- |
| 3 |
Integration suite: boots the WordPress test library and loads the plugin. |
| 4 |
Requires bin/install-wp-tests.sh to have been run. |
| 5 |
--> |
| 6 |
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 7 |
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd" |
| 8 |
bootstrap="tests/bootstrap-integration.php" |
| 9 |
colors="true" |
| 10 |
failOnWarning="true" |
| 11 |
failOnRisky="true"> |
| 12 |
<testsuites> |
| 13 |
<testsuite name="integration"> |
| 14 |
<directory suffix="Test.php">tests/integration</directory> |
| 15 |
</testsuite> |
| 16 |
</testsuites> |
| 17 |
<listeners> |
| 18 |
<listener class="WPSP\Tests\ZeroTestsListener"/> |
| 19 |
</listeners> |
| 20 |
</phpunit> |
| 21 |
|