blob: 419aa91ca5892cab09f70e808d892939da5f6f74 [file] [log] [blame]
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite(
"Tests for org.eclipse.wst.jsdt.web.core");
//$JUnit-BEGIN$
//$JUnit-END$
suite.addTest(new TestSuite(TestHtmlTranslation.class, "TestHtmlTranslation"));
return suite;
}
}