function CategoryAutocompleteTest::setUp

Same name in other branches
  1. 8.9.x core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest::setUp()
  2. 10 core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest::setUp()
  3. 11.x core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest::setUp()

Overrides UnitTestCase::setUp

File

core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php, line 26

Class

CategoryAutocompleteTest
@coversDefaultClass \Drupal\block\Controller\CategoryAutocompleteController @group block

Namespace

Drupal\Tests\block\Unit

Code

protected function setUp() : void {
    $block_manager = $this->createMock('Drupal\\Core\\Block\\BlockManagerInterface');
    $block_manager->expects($this->any())
        ->method('getCategories')
        ->willReturn([
        'Comment',
        'Node',
        'None & Such',
        'User',
    ]);
    $this->autocompleteController = new CategoryAutocompleteController($block_manager);
}

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