Skip to content
CommentLinksAlterTest.php 814 B
Newer Older
<?php

namespace Drupal\comment\Tests;

/**
 * Tests comment links altering.
 */
class CommentLinksAlterTest extends CommentTestBase {

  public static $modules = ['comment_test'];
    parent::setUp();

    // Enable comment_test.module's hook_comment_links_alter() implementation.
    $this->container->get('state')->set('comment_test_links_alter_enabled', TRUE);
  }

  /**
   * Tests comment links altering.
   */
  public function testCommentLinksAlter() {
    $comment_text = $this->randomMachineName();
    $subject = $this->randomMachineName();
    $comment = $this->postComment($this->node, $comment_text, $subject);

    $this->drupalGet('node/' . $this->node->id());

    $this->assertLink(t('Report'));
  }

}