protected function ActionUnitTest::setUp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\ActionCode
protected function setUp() {
parent::setUp();
$this->actionManager = $this->container
->get('plugin.manager.action');
$this
->installEntitySchema('user');
$this
->installSchema('system', array(
'sequences',
));
}