protected function RequestPathTest::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Plugin/Condition/RequestPathTest.php \Drupal\KernelTests\Core\Plugin\Condition\RequestPathTest::setUp()
- 9 core/tests/Drupal/KernelTests/Core/Plugin/Condition/RequestPathTest.php \Drupal\KernelTests\Core\Plugin\Condition\RequestPathTest::setUp()
File
- core/tests/ Drupal/ KernelTests/ Core/ Plugin/ Condition/ RequestPathTest.php, line 57 
Class
- RequestPathTest
- Tests that the Request Path Condition, provided by the system module, is working properly.
Namespace
Drupal\KernelTests\Core\Plugin\ConditionCode
protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this
    ->installConfig('system');
  $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);
}