3 use PHPUnit\Runner\BeforeFirstTestHook
;
6 * PHPUnit extension temporarily used to emit a deprecation notice when suite.xml is used
8 class MediaWikiDeprecatedConfigPHPUnitExtension
implements BeforeFirstTestHook
{
9 public function executeBeforeFirstTest(): void
{
10 if ( defined( 'PHPUNIT_LEGACY_ENTRYPOINT' ) ) {
11 // A deprecation notice was already emitted by phpunit.php, no need to add another one.
15 *******************************************************************************
16 DEPRECATED: The tests/phpunit/suite.xml config file has been deprecated. Use
17 phpunit.xml.dist instead.
18 *******************************************************************************
22 fwrite( STDERR
, $msg );