You are here

protected function ActionUnitTest::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Action/ActionUnitTest.php \Drupal\system\Tests\Action\ActionUnitTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/system/src/Tests/Action/ActionUnitTest.php, line 36
Contains \Drupal\system\Tests\Action\ActionUnitTest.

Class

ActionUnitTest
Tests action plugins.

Namespace

Drupal\system\Tests\Action

Code

protected function setUp() {
  parent::setUp();
  $this->actionManager = $this->container
    ->get('plugin.manager.action');
  $this
    ->installEntitySchema('user');
  $this
    ->installSchema('system', array(
    'sequences',
  ));
}