You are here

protected function ConfigActionsServiceTest::setUp in Config Actions 8

Overrides KernelTestBase::setUp

File

tests/src/Kernel/ConfigActionsServiceTest.php, line 41

Class

ConfigActionsServiceTest
test the ConfigActions service

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');
}