function RequestHandlerTest::setUp
Same name in other branches
- 9 core/modules/rest/tests/src/Kernel/RequestHandlerTest.php \Drupal\Tests\rest\Kernel\RequestHandlerTest::setUp()
- 8.9.x core/modules/rest/tests/src/Kernel/RequestHandlerTest.php \Drupal\Tests\rest\Kernel\RequestHandlerTest::setUp()
- 11.x core/modules/rest/tests/src/Kernel/RequestHandlerTest.php \Drupal\Tests\rest\Kernel\RequestHandlerTest::setUp()
Overrides KernelTestBase::setUp
File
-
core/
modules/ rest/ tests/ src/ Kernel/ RequestHandlerTest.php, line 48
Class
- RequestHandlerTest
- Test REST RequestHandler controller logic.
Namespace
Drupal\Tests\rest\KernelCode
protected function setUp() : void {
parent::setUp();
$serializer = $this->prophesize(SerializerInterface::class);
$serializer->willImplement(DecoderInterface::class);
$serializer->decode(Json::encode([
'this is an array',
]), 'json', Argument::type('array'))
->willReturn([
'this is an array',
]);
$this->requestHandler = new RequestHandler($serializer->reveal());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.