function ServiceDeprecationTest::testGetDeprecated

Same name and namespace in other branches
  1. 10 core/tests/Drupal/FunctionalTests/Core/Container/ServiceDeprecationTest.php \Drupal\FunctionalTests\Core\Container\ServiceDeprecationTest::testGetDeprecated()
  2. 11.x 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 <a href="/api/drupal/core%21lib%21Drupal.php/function/Drupal%3A%3Aservice/9" title="Retrieves a service from the container." class="local">\Drupal::service</a>().

Namespace

Drupal\FunctionalTests\Core\Container

Code

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.');
    \Drupal::service('deprecation_test.service');
    \Drupal::service('deprecation_test.alias');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.