blob: bd584accb4c8b0998390c5360210448b285f070f [file] [log] [blame]
package org.eclipse.wst.jsdt.web.core.tests;
import org.eclipse.wst.jsdt.web.core.tests.translation.TestHtmlTranslation;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllWebCoreTests {
public static Test suite() {
TestSuite suite = new TestSuite("JSDT Web Core Tests");
//$JUnit-BEGIN$
//$JUnit-END$
suite.addTestSuite(TestHtmlTranslation.class);
return suite;
}
}