function HookDiscoveryTest::testGetDefinitionWithUnknownID

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::testGetDefinitionWithUnknownID()
  2. 10 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::testGetDefinitionWithUnknownID()
  3. 11.x 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 123

Class

HookDiscoveryTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Plugin%21Discovery%21HookDiscovery.php/class/HookDiscovery/8.9.x" title="Provides a hook-based plugin discovery class." class="local">\Drupal\Core\Plugin\Discovery\HookDiscovery</a> @group Plugin

Namespace

Drupal\Tests\Core\Plugin\Discovery

Code

public function testGetDefinitionWithUnknownID() {
    $this->moduleHandler
        ->expects($this->once())
        ->method('getImplementations')
        ->will($this->returnValue([]));
    $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.