You are here

public function HookDiscoveryTest::testGetDefinitionWithUnknownID in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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.

@expectedException \Drupal\Component\Plugin\Exception\PluginNotFoundException

See also

\Drupal\Core\Plugin\Discovery::getDefinition()

File

core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php, line 129
Contains \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest.

Class

HookDiscoveryTest
@coversDefaultClass \Drupal\Core\Plugin\Discovery\HookDiscovery @group Plugin

Namespace

Drupal\Tests\Core\Plugin\Discovery

Code

public function testGetDefinitionWithUnknownID() {
  $this->moduleHandler
    ->expects($this
    ->once())
    ->method('getImplementations')
    ->will($this
    ->returnValue(array()));
  $this->hookDiscovery
    ->getDefinition('test_non_existant', TRUE);
}