function ShortcutSevenIntegrationTest::testInstallUninstall

Tests shortcut_install() and shortcut_uninstall().

File

core/modules/shortcut/tests/src/Kernel/ShortcutSevenIntegrationTest.php, line 19

Class

ShortcutSevenIntegrationTest
Tests <a href="/api/drupal/core%21modules%21shortcut%21shortcut.install/function/shortcut_install/8.9.x" title="Implements hook_install()." class="local">shortcut_install</a>() and <a href="/api/drupal/core%21modules%21shortcut%21shortcut.install/function/shortcut_uninstall/8.9.x" title="Implements hook_uninstall()." class="local">shortcut_uninstall</a>().

Namespace

Drupal\Tests\shortcut\Kernel

Code

public function testInstallUninstall() {
    // Install seven.
    \Drupal::service('theme_installer')->install([
        'seven',
    ]);
    $this->assertNull($this->config('seven.settings')
        ->get('third_party_settings.shortcut'), 'There are no shortcut settings in seven.settings.');
    \Drupal::service('module_installer')->install([
        'shortcut',
    ]);
    $this->assertTrue($this->config('seven.settings')
        ->get('third_party_settings.shortcut.module_link'), 'The shortcut module_link setting is in seven.settings.');
    \Drupal::service('module_installer')->uninstall([
        'shortcut',
    ]);
    $this->assertNull($this->config('seven.settings')
        ->get('third_party_settings.shortcut'), 'There are no shortcut settings in seven.settings.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.