function ItemCacheTagsTest::setUp

Overrides EntityCacheTagsTestBase::setUp

File

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

Class

ItemCacheTagsTest
Tests the Item entity's cache tags.

Namespace

Drupal\Tests\aggregator\Functional

Code

protected function setUp() {
  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.