You are here

protected function RulesUiEmbedTest::setUp in Rules 8.3

Overrides RulesKernelTestBase::setUp

File

tests/src/Kernel/RulesUiEmbedTest.php, line 37

Class

RulesUiEmbedTest
Tests embedding the Rules UI.

Namespace

Drupal\Tests\rules\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this->rulesUiManager = $this->container
    ->get('plugin.manager.rules_ui');
  $this
    ->installConfig([
    'system',
  ]);
  $this
    ->installConfig([
    'rules_test_ui_embed',
  ]);
  $this
    ->installSchema('system', [
    'sequences',
  ]);
}