Package com.gwtplatform.dispatch.rpc.shared.action

Examples of com.gwtplatform.dispatch.rpc.shared.action.TestAction


import com.gwtplatform.dispatch.shared.ActionException;

public class ActionTestBase {

    protected void testAction(Dispatch dispatch) throws ActionException, ServiceException {
        TestAction action = new TestAction(TestActionHandler.MESSAGE);
        TestResult result = dispatch.execute(action);
        Assert.assertTrue("Invalid action result! Processing error occured", result.getResult());
    }
View Full Code Here

TOP

Related Classes of com.gwtplatform.dispatch.rpc.shared.action.TestAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.