Example usage for com.liferay.portal.kernel.xmlrpc XmlRpcUtil setXmlRpc

List of usage examples for com.liferay.portal.kernel.xmlrpc XmlRpcUtil setXmlRpc

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.xmlrpc XmlRpcUtil setXmlRpc.

Prototype

public void setXmlRpc(XmlRpc xmlRpc) 

Source Link

Usage

From source file:com.liferay.blogs.internal.util.PingbackMethodImplTest.java

License:Open Source License

protected void setUpXmlRpcUtil() {
    Fault fault = Mockito.mock(Fault.class);

    when(_xmlRpc.createFault(Matchers.anyInt(), Matchers.anyString())).thenReturn(fault);

    XmlRpcUtil xmlRpcUtil = new XmlRpcUtil();

    xmlRpcUtil.setXmlRpc(_xmlRpc);
}