public function PluginManagerBaseTest::testGetInstanceWithoutMapperShouldThrowException in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php \Drupal\Tests\Component\Plugin\PluginManagerBaseTest::testGetInstanceWithoutMapperShouldThrowException()
@covers ::getInstance
File
- core/tests/ Drupal/ Tests/ Component/ Plugin/ PluginManagerBaseTest.php, line 115 
Class
- PluginManagerBaseTest
- @coversDefaultClass \Drupal\Component\Plugin\PluginManagerBase @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetInstanceWithoutMapperShouldThrowException() {
  $options = [
    'foo' => 'F00',
    'bar' => 'bAr',
  ];
  /** @var \Drupal\Component\Plugin\PluginManagerBase $manager */
  $manager = $this
    ->getMockBuilder(PluginManagerBase::class)
    ->getMockForAbstractClass();
  // 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);
}