blob: 5a54a1e404c42aa5c99d85d80d5df2c65e434f71 [file] [log] [blame]
package org.eclipse.swt.tests.junit;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.events.*;
import junit.framework.*;
import junit.textui.*;
/**
* Automated Test Suite for class org.eclipse.swt.events.TypedEvent
*
* @see org.eclipse.swt.events.TypedEvent
*/
public class Test_org_eclipse_swt_events_TypedEvent extends SwtTestCase {
public Test_org_eclipse_swt_events_TypedEvent(String name) {
super(name);
}
public static void main(String[] args) {
TestRunner.run(suite());
}
protected void setUp() {
}
protected void tearDown() {
}
public void test_ConstructorLjava_lang_Object() {
warnUnimpl("Test test_ConstructorLjava_lang_Object not written");
}
public void test_ConstructorLorg_eclipse_swt_widgets_Event() {
warnUnimpl("Test test_ConstructorLorg_eclipse_swt_widgets_Event not written");
}
public static Test suite() {
TestSuite suite = new TestSuite();
java.util.Vector methodNames = methodNames();
java.util.Enumeration e = methodNames.elements();
while (e.hasMoreElements()) {
suite.addTest(new Test_org_eclipse_swt_events_TypedEvent((String)e.nextElement()));
}
return suite;
}
public static java.util.Vector methodNames() {
java.util.Vector methodNames = new java.util.Vector();
methodNames.addElement("test_ConstructorLjava_lang_Object");
methodNames.addElement("test_ConstructorLorg_eclipse_swt_widgets_Event");
return methodNames;
}
protected void runTest() throws Throwable {
if (getName().equals("test_ConstructorLjava_lang_Object")) test_ConstructorLjava_lang_Object();
else if (getName().equals("test_ConstructorLorg_eclipse_swt_widgets_Event")) test_ConstructorLorg_eclipse_swt_widgets_Event();
}
}