<?xml version="1.0" encoding="UTF-8"?>
<!--
  WordPress integration test suite. Runs inside the wp-env tests environment:

    wp-env run tests-cli \-\-env-cwd=wp-content/plugins/<dir> ./vendor/bin/phpunit -c phpunit-integration.xml

  Kept separate from phpunit.xml: the unit suite stubs WP functions with
  Brain Monkey and cannot share a process with a real WordPress load.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
         bootstrap="tests/bootstrap-integration.php"
         colors="true"
         convertDeprecationsToExceptions="false">
    <testsuites>
        <testsuite name="integration">
            <directory>tests/Integration</directory>
        </testsuite>
    </testsuites>
</phpunit>
