You are here

protected function ConfigActionsPluginTest::setUp in Config Actions 8

Overrides KernelTestBase::setUp

File

tests/src/Kernel/ConfigActionsPluginTest.php, line 40

Class

ConfigActionsPluginTest
test the ConfigActions plugins

Namespace

Drupal\Tests\config_actions\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig('system');
  $this
    ->installConfig('node');
  $this
    ->installConfig('test_config_actions');
  $this->configActions = $this->container
    ->get('config_actions');
}