You are here

protected function CommentCSSTest::setUp in Drupal 10

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

File

core/modules/comment/tests/src/Functional/CommentCSSTest.php, line 32

Class

CommentCSSTest
Tests CSS classes on comments.

Namespace

Drupal\Tests\comment\Functional

Code

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

  // Allow anonymous users to see comments.
  user_role_grant_permissions(RoleInterface::ANONYMOUS_ID, [
    'access comments',
    'access content',
  ]);
}