
| Current Path : /var/www/html/rocksensor1/web/core/tests/Drupal/Tests/Core/Http/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/tests/Drupal/Tests/Core/Http/RequestStackLegacyTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\Core\Http;
use Drupal\Core\Http\RequestStack;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Http\RequestStack
* @group legacy
*
* @todo Remove this in Drupal 11 https://www.drupal.org/node/3265121
*/
class RequestStackLegacyTest extends UnitTestCase {
/**
* Tests deprecation message in our subclassed RequestStack.
*
* @covers ::getMainRequest
*/
public function testGetMainRequestDeprecation(): void {
$stack = new RequestStack();
$this->expectDeprecation('The Drupal\Core\Http\RequestStack is deprecated in drupal:10.0.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3265357');
$this->assertNull($stack->getMainRequest());
}
}