function RulesUiEmbedTest::setUp

Overrides RulesKernelTestBase::setUp

File

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

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