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')); } }