class RequestStackLegacyTest
@coversDefaultClass \Drupal\Core\Http\RequestStack
@group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait implements \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Http\RequestStackLegacyTest implements \Drupal\Tests\UnitTestCase
Expanded class hierarchy of RequestStackLegacyTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Http/ RequestStackLegacyTest.php, line 12
Namespace
Drupal\Tests\Core\HttpView source
class RequestStackLegacyTest extends UnitTestCase {
/**
* Tests deprecation message in our subclassed RequestStack.
*
* @covers ::getMasterRequest
*/
public function testGetMasterRequestDeprecation() {
$stack = new RequestStack();
$this->expectDeprecation('Drupal\\Core\\Http\\RequestStack::getMasterRequest() is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use getMainRequest() instead. See https://www.drupal.org/node/3253744');
$this->assertNull($stack->getMasterRequest());
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.