protected function ResourceResponseValidatorTest::createResponse in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Unit/EventSubscriber/ResourceResponseValidatorTest.php \Drupal\Tests\jsonapi\Unit\EventSubscriber\ResourceResponseValidatorTest::createResponse()
Helper method to create a resource response from arbitrary JSON.
Parameters
string|null $json: The JSON with which to create a mock response.
Return value
\Drupal\rest\ResourceResponse The mock response object.
2 calls to ResourceResponseValidatorTest::createResponse()
- ResourceResponseValidatorTest::testDoValidateResponse in core/
modules/ jsonapi/ tests/ src/ Unit/ EventSubscriber/ ResourceResponseValidatorTest.php - @covers ::doValidateResponse
- ResourceResponseValidatorTest::validateResponseProvider in core/
modules/ jsonapi/ tests/ src/ Unit/ EventSubscriber/ ResourceResponseValidatorTest.php - Provides test cases for testValidateResponse.
File
- core/
modules/ jsonapi/ tests/ src/ Unit/ EventSubscriber/ ResourceResponseValidatorTest.php, line 232
Class
- ResourceResponseValidatorTest
- @coversDefaultClass \Drupal\jsonapi\EventSubscriber\ResourceResponseValidator @group jsonapi
Namespace
Drupal\Tests\jsonapi\Unit\EventSubscriberCode
protected function createResponse($json = NULL) {
$response = new ResourceResponse();
if ($json) {
$response
->setContent($json);
}
return $response;
}