fXmlRpc\Transport\RecorderTest::testReturnLastResponse PHP Method

testReturnLastResponse() public method

    public function testReturnLastResponse()
    {
        $this->transportOk();
        $this->client->call('TestMethod', ['param1', 2, ['param3' => true]]);
        $lastResponse = $this->recorder->getLastResponse();
        $this->assertXmlStringEqualsXmlString($this->expectedResponse, $lastResponse);
    }