public function HookDiscoveryTest::testGetDefinitionWithUnknownID in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::testGetDefinitionWithUnknownID()
- 9 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 114
Class
- HookDiscoveryTest
- @coversDefaultClass \Drupal\Core\Plugin\Discovery\HookDiscovery @group Plugin
Namespace
Drupal\Tests\Core\Plugin\DiscoveryCode
public function testGetDefinitionWithUnknownID() {
$this->moduleHandler
->expects($this
->once())
->method('invokeAllWith')
->will($this
->returnValue([]));
$this
->expectException(PluginNotFoundException::class);
$this->hookDiscovery
->getDefinition('test_non_existent', TRUE);
}