Wordpress/tests/phpunit/multisite.xml

49 lines
1.5 KiB
XML

<phpunit
bootstrap="includes/bootstrap.php"
backupGlobals="false"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
>
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
<const name="WP_RUN_CORE_TESTS" value="1" />
</php>
<testsuites>
<!-- Default test suite to run all tests -->
<testsuite name="default">
<directory suffix=".php">tests</directory>
<!-- Path relative to the checkout root, for PHPUnit 3.6.x -->
<exclude>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</exclude>
<!-- Same path relative to the configuration file, for PHPUnit 4.0.0+ -->
<exclude>tests/rest-api/rest-autosaves-controller.php</exclude>
</testsuite>
<!-- Sets the DOING_AUTOSAVE constant, so needs to be run last -->
<testsuite name="restapi-autosave">
<!-- Path relative to the checkout root, for PHPUnit 3.6.x -->
<file>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</file>
<!-- Same path relative to the configuration file, for PHPUnit 4.0.0+ -->
<file>tests/rest-api/rest-autosaves-controller.php</file>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>ajax</group>
<group>ms-files</group>
<group>ms-excluded</group>
<group>external-http</group>
<group>oembed-headers</group>
</exclude>
</groups>
<listeners>
<listener class="SpeedTrapListener" file="tests/phpunit/includes/listener-loader.php">
<arguments>
<array>
<element key="slowThreshold">
<integer>150</integer>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>