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

Overrides CommentTestBase::setUp

File

core/modules/comment/tests/src/Functional/CommentAnonymousTest.php, line 25

Class

CommentAnonymousTest
Tests anonymous commenting.

Namespace

Drupal\Tests\comment\Functional

Code

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

  // Enable anonymous and authenticated user comments.
  user_role_grant_permissions(RoleInterface::ANONYMOUS_ID, [
    'access comments',
    'post comments',
    'skip comment approval',
  ]);
  user_role_grant_permissions(RoleInterface::AUTHENTICATED_ID, [
    'access comments',
    'post comments',
    'skip comment approval',
  ]);
}