You are here

public function BlockManagerTest::testHandlePluginNotFound in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Block/BlockManagerTest.php \Drupal\Tests\Core\Block\BlockManagerTest::testHandlePluginNotFound()

@covers ::handlePluginNotFound

File

core/tests/Drupal/Tests/Core/Block/BlockManagerTest.php, line 104

Class

BlockManagerTest
@coversDefaultClass \Drupal\Core\Block\BlockManager

Namespace

Drupal\Tests\Core\Block

Code

public function testHandlePluginNotFound() {
  $this->logger
    ->warning('The "%plugin_id" was not found', [
    '%plugin_id' => 'invalid',
  ])
    ->shouldBeCalled();
  $plugin = $this->blockManager
    ->createInstance('invalid');
  $this
    ->assertSame('broken', $plugin
    ->getPluginId());
}