wp-discourse/tests/phpunit/multisite.xml
Angus McLeod 21a1453eae
Handle PHP deprecations (#515)
* Update deprecated callable use

See https://wiki.php.net/rfc/deprecate_partially_supported_callables

* Update phpunit config
2024-04-03 11:00:35 -07:00

12 lines
582 B
XML
Vendored

<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" convertDeprecationsToExceptions="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage/>
<php>
<const name="WP_TESTS_MULTISITE" value="1"/>
</php>
<testsuites>
<testsuite name="multisite">
<directory prefix="test-" suffix=".php">multisite/</directory>
</testsuite>
</testsuites>
</phpunit>