You are here

protected function TourPluginTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/tour/src/Tests/TourPluginTest.php \Drupal\tour\Tests\TourPluginTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/tour/src/Tests/TourPluginTest.php, line 33
Contains \Drupal\tour\Tests\TourPluginTest.

Class

TourPluginTest
Tests the functionality of tour plugins.

Namespace

Drupal\tour\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig(array(
    'tour',
  ));
  $this->pluginManager = $this->container
    ->get('plugin.manager.tour.tip');
}