CommentLinksAlterTest.php in Zircon Profile 8.0
File
core/modules/comment/src/Tests/CommentLinksAlterTest.php
View source
<?php
namespace Drupal\comment\Tests;
class CommentLinksAlterTest extends CommentTestBase {
public static $modules = array(
'comment_test',
);
protected function setUp() {
parent::setUp();
$this->container
->get('state')
->set('comment_test_links_alter_enabled', TRUE);
}
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'));
}
}