function WorkflowAccessControlHandlerTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php \Drupal\Tests\workflows\Kernel\WorkflowAccessControlHandlerTest::setUp()
  2. 8.9.x core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php \Drupal\Tests\workflows\Kernel\WorkflowAccessControlHandlerTest::setUp()
  3. 11.x core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php \Drupal\Tests\workflows\Kernel\WorkflowAccessControlHandlerTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php, line 58

Class

WorkflowAccessControlHandlerTest
@coversDefaultClass \Drupal\workflows\WorkflowAccessControlHandler[[api-linebreak]] @group workflows @group #slow

Namespace

Drupal\Tests\workflows\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this->installEntitySchema('user');
  $this->accessControlHandler = $this->container
    ->get('entity_type.manager')
    ->getAccessControlHandler('workflow');
  // Create and discard user 1, which is special and bypasses all access
  // checking.
  $this->createUser([]);
  $this->user = $this->createUser([]);
  $this->adminUser = $this->createUser([
    'administer workflows',
  ]);
}

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