function PluginManagerBaseTest::testGetInstance
@covers ::getInstance
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Plugin/ PluginManagerBaseTest.php, line 99  
Class
- PluginManagerBaseTest
 - @coversDefaultClass \Drupal\Component\Plugin\PluginManagerBase[[api-linebreak]] @group Plugin
 
Namespace
Drupal\Tests\Component\PluginCode
public function testGetInstance() : void {
  $options = [
    'foo' => 'F00',
    'bar' => 'bAr',
  ];
  $instance = new \stdClass();
  $mapper = $this->prophesize(MapperInterface::class);
  $mapper->getInstance($options)
    ->shouldBeCalledTimes(1)
    ->willReturn($instance);
  $manager = new StubPluginManagerBaseWithMapper($mapper->reveal());
  $this->assertEquals($instance, $manager->getInstance($options));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.