function CommentLinkBuilderTest::setUp

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

Prepares mocks for the test.

Overrides UnitTestCase::setUp

File

core/modules/comment/tests/src/Unit/CommentLinkBuilderTest.php, line 71

Class

CommentLinkBuilderTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21comment%21src%21CommentLinkBuilder.php/class/CommentLinkBuilder/9" title="Defines a class for building markup for comment links on a commented entity." class="local">\Drupal\comment\CommentLinkBuilder</a> @group comment

Namespace

Drupal\Tests\comment\Unit

Code

protected function setUp() : void {
    $this->commentManager = $this->createMock('\\Drupal\\comment\\CommentManagerInterface');
    $this->stringTranslation = $this->getStringTranslationStub();
    $this->entityTypeManager = $this->createMock(EntityTypeManagerInterface::class);
    $this->moduleHandler = $this->createMock('\\Drupal\\Core\\Extension\\ModuleHandlerInterface');
    $this->currentUser = $this->createMock('\\Drupal\\Core\\Session\\AccountProxyInterface');
    $this->commentLinkBuilder = new CommentLinkBuilder($this->currentUser, $this->commentManager, $this->moduleHandler, $this->stringTranslation, $this->entityTypeManager);
    $this->commentManager
        ->expects($this->any())
        ->method('getFields')
        ->with('node')
        ->willReturn([
        'comment' => [],
    ]);
    $this->commentManager
        ->expects($this->any())
        ->method('forbiddenMessage')
        ->willReturn("Can't let you do that Dave.");
    $this->stringTranslation
        ->expects($this->any())
        ->method('formatPlural')
        ->willReturnArgument(1);
}

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