You are here

protected function RequestPathExclusionTest::setUp in Context 8.4

Overrides KernelTestBase::setUp

File

tests/src/Kernel/RequestPathExclusionTest.php, line 56

Class

RequestPathExclusionTest
Tests the request path exclusion condition plugin.

Namespace

Drupal\Tests\context\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this->pluginManager = $this->container
    ->get('plugin.manager.condition');

  // Set a mock alias manager in the container.
  $this->aliasManager = new MockAliasManager();
  $this->container
    ->set('path_alias.manager', $this->aliasManager);

  // Set the test request stack in the container.
  $this->requestStack = new RequestStack();
  $this->container
    ->set('request_stack', $this->requestStack);
  $this->currentPath = new CurrentPathStack($this->requestStack);
  $this->container
    ->set('path.current', $this->currentPath);
}