ShortcutSevenIntegrationTest.php

Namespace

Drupal\Tests\shortcut\Kernel

File

core/modules/shortcut/tests/src/Kernel/ShortcutSevenIntegrationTest.php

View source
<?php

namespace Drupal\Tests\shortcut\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Tests shortcut_install() and shortcut_uninstall().
 *
 * @group shortcut
 */
class ShortcutSevenIntegrationTest extends KernelTestBase {
  public static $modules = [
    'system',
  ];
  
  /**
   * Tests shortcut_install() and shortcut_uninstall().
   */
  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.');
  }

}

Classes

Title Deprecated Summary
ShortcutSevenIntegrationTest Tests shortcut_install() and shortcut_uninstall().

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