function PluginManagerBaseTest::testGetInstanceWithoutMapperShouldThrowException

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php \Drupal\Tests\Component\Plugin\PluginManagerBaseTest::testGetInstanceWithoutMapperShouldThrowException()
  2. 9 core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php \Drupal\Tests\Component\Plugin\PluginManagerBaseTest::testGetInstanceWithoutMapperShouldThrowException()
  3. 8.9.x core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php \Drupal\Tests\Component\Plugin\PluginManagerBaseTest::testGetInstanceWithoutMapperShouldThrowException()

@legacy-covers ::getInstance

File

core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php, line 118

Class

PluginManagerBaseTest
Tests Drupal\Component\Plugin\PluginManagerBase.

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetInstanceWithoutMapperShouldThrowException() : void {
  $options = [
    'foo' => 'F00',
    'bar' => 'bAr',
  ];
  $manager = new StubPluginManagerBase();
  // Set the expected exception thrown by ::getInstance.
  $this->expectException(\BadMethodCallException::class);
  $this->expectExceptionMessage(sprintf('%s does not support this method unless %s::$mapper is set.', get_class($manager), get_class($manager)));
  $manager->getInstance($options);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.