You are here

protected function BlockFormTest::getBlockMockWithMachineName in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block/tests/src/Unit/BlockFormTest.php \Drupal\Tests\block\Unit\BlockFormTest::getBlockMockWithMachineName()

Mocks a block with a block plugin.

Parameters

string $machine_name: The machine name of the block plugin.

Return value

\Drupal\block\BlockInterface|\PHPUnit\Framework\MockObject\MockObject The mocked block.

Overrides UnitTestCase::getBlockMockWithMachineName

1 call to BlockFormTest::getBlockMockWithMachineName()
BlockFormTest::testGetUniqueMachineName in core/modules/block/tests/src/Unit/BlockFormTest.php
Tests the unique machine name generator.

File

core/modules/block/tests/src/Unit/BlockFormTest.php, line 96

Class

BlockFormTest
@coversDefaultClass \Drupal\block\BlockForm @group block

Namespace

Drupal\Tests\block\Unit

Code

protected function getBlockMockWithMachineName($machine_name) {
  $plugin = $this
    ->getMockBuilder(BlockBase::class)
    ->disableOriginalConstructor()
    ->getMock();
  $plugin
    ->expects($this
    ->any())
    ->method('getMachineNameSuggestion')
    ->will($this
    ->returnValue($machine_name));
  $block = $this
    ->getMockBuilder(Block::class)
    ->disableOriginalConstructor()
    ->getMock();
  $block
    ->expects($this
    ->any())
    ->method('getPlugin')
    ->will($this
    ->returnValue($plugin));
  return $block;
}