function ModuleHandlerDeprecatedHookTest::testInvokeAllDeprecated
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php \Drupal\KernelTests\Core\Extension\ModuleHandlerDeprecatedHookTest::testInvokeAllDeprecated()
- 8.9.x core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php \Drupal\KernelTests\Core\Extension\ModuleHandlerDeprecatedHookTest::testInvokeAllDeprecated()
- 11.x core/tests/Drupal/KernelTests/Core/Extension/ModuleHandlerDeprecatedHookTest.php \Drupal\KernelTests\Core\Extension\ModuleHandlerDeprecatedHookTest::testInvokeAllDeprecated()
@covers ::invokeAllDeprecated
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Extension/ ModuleHandlerDeprecatedHookTest.php, line 41
Class
- ModuleHandlerDeprecatedHookTest
- Test whether deprecated hook invocations trigger errors.
Namespace
Drupal\KernelTests\Core\ExtensionCode
public function testInvokeAllDeprecated() : void {
$this->expectDeprecation('The deprecated hook hook_deprecated_hook() is implemented in these functions: deprecation_test_deprecated_hook(). Use something else.');
/** @var \Drupal\Core\Extension\ModuleHandlerInterface $module_handler */
$module_handler = $this->container
->get('module_handler');
$arg = 'an_arg';
$this->assertEquals([
$arg,
], $module_handler->invokeAllDeprecated('Use something else.', 'deprecated_hook', [
$arg,
]));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.