function HookDiscoveryTest::testGetDefinitionWithUnknownID
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::testGetDefinitionWithUnknownID()
- 8.9.x core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::testGetDefinitionWithUnknownID()
- 10 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::testGetDefinitionWithUnknownID()
Tests the getDefinition method with an unknown plugin ID.
See also
\Drupal\Core\Plugin\Discovery::getDefinition()
File
-
core/
tests/ Drupal/ Tests/ Core/ Plugin/ Discovery/ HookDiscoveryTest.php, line 113
Class
- HookDiscoveryTest
- @coversDefaultClass \Drupal\Core\Plugin\Discovery\HookDiscovery @group Plugin
Namespace
Drupal\Tests\Core\Plugin\DiscoveryCode
public function testGetDefinitionWithUnknownID() : void {
$this->expectException(PluginNotFoundException::class);
$this->hookDiscovery
->getDefinition('test_non_existent', TRUE);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.