function ItemCacheTagsTest::setUp

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

Overrides EntityCacheTagsTestBase::setUp

File

core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php, line 33

Class

ItemCacheTagsTest
Tests the Item entity's cache tags.

Namespace

Drupal\Tests\aggregator\Functional

Code

protected function setUp() : void {
    parent::setUp();
    // Give anonymous users permission to access feeds, so that we can verify
    // the cache tags of cached versions of feed items.
    $user_role = Role::load(RoleInterface::ANONYMOUS_ID);
    $user_role->grantPermission('access news feeds');
    $user_role->save();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.