You are here

CommentLinksAlterTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/comment/src/Tests/CommentLinksAlterTest.php

File

core/modules/comment/src/Tests/CommentLinksAlterTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\comment\Tests\CommentLinksAlterTest.
 */
namespace Drupal\comment\Tests;


/**
 * Tests comment links altering.
 *
 * @group comment
 */
class CommentLinksAlterTest extends CommentTestBase {
  public static $modules = array(
    'comment_test',
  );
  protected function setUp() {
    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() {
    $this
      ->drupalLogin($this->webUser);
    $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'));
  }

}

Classes

Namesort descending Description
CommentLinksAlterTest Tests comment links altering.