protected function StyleSerializerTest::addRequestWithFormat in Drupal 8
Same name and namespace in other branches
- 9 core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php \Drupal\Tests\rest\Functional\Views\StyleSerializerTest::addRequestWithFormat()
Sets up a request on the request stack with a specified format.
Parameters
string $format: The new request format.
1 call to StyleSerializerTest::addRequestWithFormat()
- StyleSerializerTest::testRestRenderCaching in core/
modules/ rest/ tests/ src/ Functional/ Views/ StyleSerializerTest.php - Tests REST export with views render caching enabled.
File
- core/
modules/ rest/ tests/ src/ Functional/ Views/ StyleSerializerTest.php, line 284
Class
- StyleSerializerTest
- Tests the serializer style plugin.
Namespace
Drupal\Tests\rest\Functional\ViewsCode
protected function addRequestWithFormat($format) {
$request = \Drupal::request();
$request = clone $request;
$request
->setRequestFormat($format);
\Drupal::requestStack()
->push($request);
}