You are here

protected function CommentStatisticsTest::setUp in Drupal 9

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

Overrides CommentTestBase::setUp

File

core/modules/comment/tests/src/Functional/CommentStatisticsTest.php, line 28

Class

CommentStatisticsTest
Tests comment statistics on nodes.

Namespace

Drupal\Tests\comment\Functional

Code

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

  // Create a second user to post comments.
  $this->webUser2 = $this
    ->drupalCreateUser([
    'post comments',
    'create article content',
    'edit own comments',
    'post comments',
    'skip comment approval',
    'access comments',
    'access content',
  ]);
}