clients\SoapRpcClientTest::shouldHandleMethodMethodWithoutReturn PHP Method

shouldHandleMethodMethodWithoutReturn() public method

    public function shouldHandleMethodMethodWithoutReturn()
    {
        //when
        $this->soapClient->methodWithoutReturn('user-token-342gdg453j');
        //then
        $this->assertXmlStringEqualsXmlString('<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://foo.bar/rpcliteralservice"><SOAP-ENV:Body><ns1:methodWithoutReturnResponse/></SOAP-ENV:Body></SOAP-ENV:Envelope>', $this->soapClient->__getLastResponse());
    }