com.google.gwt.junit
Annotation Type DoNotRunWith


@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD})
@Inherited
public @interface DoNotRunWith

When a test method is annotated with DoNotRunWith, it is _not_ executed on the specified platforms. We chose DoNotRunWith instead of RunWith because we want each exception to be listed separately here.

 @DoNotRunWith({HtmlUnit})
 public class EmulSuite {
 }
 


Required Element Summary
 Platform[] value
           
 

Element Detail

value

public abstract Platform[] value