You are here

public function PluginManagerBaseTest::getMockFactoryInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php \Drupal\Tests\Component\Plugin\PluginManagerBaseTest::getMockFactoryInterface()

Generates a mocked FactoryInterface object with known properties.

2 calls to PluginManagerBaseTest::getMockFactoryInterface()
PluginManagerBaseTest::testCreateInstance in core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php
Tests createInstance() with no fallback methods.
PluginManagerBaseTest::testCreateInstanceFallback in core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php
Tests createInstance() with a fallback method.

File

core/tests/Drupal/Tests/Component/Plugin/PluginManagerBaseTest.php, line 38
Contains \Drupal\Tests\Component\Plugin\PluginManagerBaseTest.

Class

PluginManagerBaseTest
@coversDefaultClass \Drupal\Component\Plugin\PluginManagerBase @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public function getMockFactoryInterface($expects_count) {
  $mock_factory = $this
    ->getMockBuilder('Drupal\\Component\\Plugin\\Factory\\FactoryInterface')
    ->setMethods(array(
    'createInstance',
  ))
    ->getMockForAbstractClass();
  $mock_factory
    ->expects($this
    ->exactly($expects_count))
    ->method('createInstance')
    ->willReturnCallback(array(
    $this,
    'createInstanceCallback',
  ));
  return $mock_factory;
}