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

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

Introduction

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

Prototype

XmlRpcUtil

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);//from   w w w  . ja v a 2  s. c om
}