ExpectDeprecationTrait.php
Same filename in other branches
Namespace
Drupal\Tests\TraitsFile
-
core/
tests/ Drupal/ Tests/ Traits/ ExpectDeprecationTrait.php
View source
<?php
namespace Drupal\Tests\Traits;
/**
* Adds the ability to dynamically set expected deprecation messages in tests.
*
* @internal
*
* @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Use
* \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait instead.
*
* @see https://www.drupal.org/node/3161901
*/
trait ExpectDeprecationTrait {
/**
* Sets an expected deprecation message.
*
* @param string $message
* The expected deprecation message.
*/
protected function addExpectedDeprecationMessage($message) {
@trigger_error(__METHOD__ . '() is deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Use \\Symfony\\Bridge\\PhpUnit\\ExpectDeprecationTrait::expectDeprecation() instead. See https://www.drupal.org/node/3161901', E_USER_DEPRECATED);
$this->expectDeprecation($message);
}
/**
* Sets expected deprecation messages.
*
* @param string[] $messages
* The expected deprecation messages.
*
* @see \Symfony\Bridge\PhpUnit\Legacy\ExpectDeprecationTraitForV8_4::expectDeprecation()
*/
public function expectedDeprecations(array $messages) {
@trigger_error(__METHOD__ . '() is deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. Use \\Symfony\\Bridge\\PhpUnit\\ExpectDeprecationTrait::expectDeprecation() instead. See https://www.drupal.org/node/3161901', E_USER_DEPRECATED);
foreach ($messages as $message) {
$this->expectDeprecation($message);
}
}
}
Traits
Title | Deprecated | Summary |
---|---|---|
ExpectDeprecationTrait | in drupal:9.1.0 and is removed from drupal:10.0.0. Use \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait instead. |
Adds the ability to dynamically set expected deprecation messages in tests. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.