List of usage examples for com.liferay.portal.kernel.xmlrpc XmlRpcUtil setXmlRpc
public void setXmlRpc(XmlRpc xmlRpc)
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); }