Author: estherbin
Date: 2008-06-10 05:27:51 -0400 (Tue, 10 Jun 2008)
New Revision: 8663
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java
Log:
Write junit for
http://jira.jboss.com/jira/browse/JBIDE-1791 issue.
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java
===================================================================
---
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java 2008-06-10
08:09:11 UTC (rev 8662)
+++
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java 2008-06-10
09:27:51 UTC (rev 8663)
@@ -1,5 +1,9 @@
package org.jboss.tools.jst.jsp.test;
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.jboss.tools.jst.jsp.test.ca.Jbide1791Test;
import org.jboss.tools.jst.jsp.test.ca.JsfJspJbide1704Test;
import org.jboss.tools.jst.jsp.test.ca.JsfJspJbide1717Test;
import org.jboss.tools.jst.jsp.test.ca.JsfJspJbide1807Test;
@@ -9,9 +13,6 @@
import org.jboss.tools.jst.jsp.test.ca.JstJspJbide1759Test;
import org.jboss.tools.jst.jsp.test.ca.StrutsJspJbide1648Test;
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
public class JstJspAllTests {
public static Test suite() {
@@ -25,6 +26,7 @@
suite.addTestSuite(JsfJspJbide1704Test.class);
suite.addTestSuite(JsfJspJbide1717Test.class);
suite.addTestSuite(JstJspJbide1759Test.class);
+ suite.addTestSuite(Jbide1791Test.class);
return suite;
}