All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.gwt.test.GwtRunner Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test;

import com.googlecode.gwt.test.internal.junit.AbstractGwtRunner;
import com.googlecode.gwt.test.internal.junit.AbstractGwtRunnerFactory;

/**
 * 

* The gwt-test-utils basic JUnit Runner allowing to run tests classes which reference, directly or * indirectly, GWT components. It works by annotating your test class with * @RunWith(GwtRunner.class). *

* * @author Gael Lazzari */ public class GwtRunner extends AbstractGwtRunner { public GwtRunner(Class clazz) throws Throwable { super(clazz); } @Override protected AbstractGwtRunnerFactory getRunnerFactory() { return new GwtRunnerFactory(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy