You are here

class TourPluginTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/tour/tests/src/Kernel/TourPluginTest.php \Drupal\Tests\tour\Kernel\TourPluginTest
  2. 9 core/modules/tour/tests/src/Kernel/TourPluginTest.php \Drupal\Tests\tour\Kernel\TourPluginTest

Tests the functionality of tour plugins.

@group tour

Hierarchy

Expanded class hierarchy of TourPluginTest

File

core/modules/tour/tests/src/Kernel/TourPluginTest.php, line 12

Namespace

Drupal\Tests\tour\Kernel
View source
class TourPluginTest extends KernelTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'tour',
  ];

  /**
   * Stores the tour plugin manager.
   *
   * @var \Drupal\tour\TipPluginManager
   */
  protected $pluginManager;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->installConfig([
      'tour',
    ]);
    $this->pluginManager = $this->container
      ->get('plugin.manager.tour.tip');
  }

  /**
   * Tests tour plugins.
   */
  public function testTourPlugins() {
    $this
      ->assertCount(1, $this->pluginManager
      ->getDefinitions(), 'Only tour plugins for the enabled modules were returned.');
  }

}

Members