public function ServiceDeprecationTest::testGetDeprecated in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/FunctionalTests/Core/Container/ServiceDeprecationTest.php \Drupal\FunctionalTests\Core\Container\ServiceDeprecationTest::testGetDeprecated()
@covers ::get
File
- core/tests/ Drupal/ FunctionalTests/ Core/ Container/ ServiceDeprecationTest.php, line 34 
Class
- ServiceDeprecationTest
- Test whether deprecation notices are triggered via \Drupal::service().
Namespace
Drupal\FunctionalTests\Core\ContainerCode
public function testGetDeprecated() {
  $this
    ->expectDeprecation('The "deprecation_test.service" service is deprecated in drupal:9.0.0 and is removed from drupal:20.0.0. This is a test.');
  $this
    ->expectDeprecation('The "deprecation_test.alias" alias is deprecated in drupal:9.0.0 and is removed from drupal:20.0.0. This is a test.');
  // @phpstan-ignore-next-line
  \Drupal::service('deprecation_test.service');
  // @phpstan-ignore-next-line
  \Drupal::service('deprecation_test.alias');
}