You are here

protected function CommentLinksAlterTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php \Drupal\Tests\comment\Functional\CommentLinksAlterTest::setUp()
  2. 9 core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php \Drupal\Tests\comment\Functional\CommentLinksAlterTest::setUp()

File

core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php, line 19

Class

CommentLinksAlterTest
Tests comment links altering.

Namespace

Drupal\Tests\comment\Functional

Code

protected function setUp() : void {
  parent::setUp();

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