Examples of GWTTestSuite


Examples of com.google.gwt.junit.tools.GWTTestSuite

/**
* Test for suite for the com.google.gwt.event module.
*/
public class EventSuite {
  public static Test suite() {
    GWTTestSuite suite = new GWTTestSuite(
        "Test for suite for the com.google.gwt.event module.");

    suite.addTestSuite(DomEventTest.class);
    suite.addTestSuite(EventBusTest.class);
    suite.addTestSuite(HandlerManagerTest.class);
    suite.addTestSuite(LogicalEventsTest.class);
    suite.addTestSuite(ResettableEventBusTest.class);
    suite.addTestSuite(SimpleEventBusTest.class);

    return suite;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.