19 declare(strict_types=1);
26 class RequestProcessorBadVerbTest
extends RequestProcessorTestCase
28 public function testGetResponseToRequestBadVerbError(): void
30 $processor =
new RequestProcessor(
33 $this->getRepository(),
34 $this->getTokenHandler()
37 $expected_response = <<<XML
39 <response_info>
base url:NoVerb:</response_info>
40 <error>badVerb</error>
44 $response = $processor->getResponseToRequest($this->getRequest(
'base url', Verb::NULL, []));
46 $this->assertXmlStringEqualsXmlString($expected_response,
$response->saveXML());