[jboss-cvs] JBossAS SVN: r59730 - projects/admin-console/trunk/src/test/org/jboss/admin.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 17 19:36:50 EST 2007


Author: chilin
Date: 2007-01-17 19:36:50 -0500 (Wed, 17 Jan 2007)
New Revision: 59730

Added:
   projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJbossmq.java
Removed:
   projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJms.java
Log:
c:/temp/message.txt

Copied: projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJbossmq.java (from rev 59729, projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJms.java)
===================================================================
--- projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJbossmq.java	                        (rev 0)
+++ projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJbossmq.java	2007-01-18 00:36:50 UTC (rev 59730)
@@ -0,0 +1,63 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.admin;
+
+import org.jboss.admin.console.web.struts.jms.CreateDestinationActionTest;
+import org.jboss.admin.console.web.struts.jms.ListDestinationsActionTest;
+import org.jboss.admin.console.web.struts.jms.RemoveDestinationActionTest;
+import org.jboss.admin.console.web.struts.jms.RemoveMessagesActionTest;
+import org.jboss.admin.console.web.struts.jms.ResetCounterActionTest;
+import org.jboss.admin.console.web.struts.jms.ResetHistoryActionTest;
+import org.jboss.admin.console.web.struts.jms.SaveDestinationActionTest;
+import org.jboss.admin.console.web.struts.jms.SaveJmsActionTest;
+import org.jboss.admin.console.web.struts.jms.ViewDestinationActionTest;
+import org.jboss.admin.console.web.struts.jms.ViewJmsActionTest;
+import org.jboss.admin.console.web.struts.jms.ViewMessageHistoryActionTest;
+import org.jboss.admin.console.web.struts.jms.ViewMessageStatisticsActionTest;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class TestSuiteStrutsJms {
+
+	public static Test suite() {
+		TestSuite suite = new TestSuite(
+				"Test for org.jboss.admin.console.web.struts.jms");
+		//$JUnit-BEGIN$
+		suite.addTestSuite(ListDestinationsActionTest.class);
+		suite.addTestSuite(RemoveMessagesActionTest.class);
+		suite.addTestSuite(SaveDestinationActionTest.class);
+		suite.addTestSuite(ViewJmsActionTest.class);
+		suite.addTestSuite(ViewDestinationActionTest.class);
+		suite.addTestSuite(RemoveDestinationActionTest.class);
+		suite.addTestSuite(ResetHistoryActionTest.class);
+		suite.addTestSuite(SaveJmsActionTest.class);
+		suite.addTestSuite(ViewMessageHistoryActionTest.class);
+		suite.addTestSuite(ResetCounterActionTest.class);
+		suite.addTestSuite(CreateDestinationActionTest.class);
+		suite.addTestSuite(ViewMessageStatisticsActionTest.class);
+		//$JUnit-END$
+		return suite;
+	}
+
+}

Deleted: projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJms.java
===================================================================
--- projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJms.java	2007-01-18 00:36:11 UTC (rev 59729)
+++ projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteStrutsJms.java	2007-01-18 00:36:50 UTC (rev 59730)
@@ -1,63 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-
-package org.jboss.admin;
-
-import org.jboss.admin.console.web.struts.jms.CreateDestinationActionTest;
-import org.jboss.admin.console.web.struts.jms.ListDestinationsActionTest;
-import org.jboss.admin.console.web.struts.jms.RemoveDestinationActionTest;
-import org.jboss.admin.console.web.struts.jms.RemoveMessagesActionTest;
-import org.jboss.admin.console.web.struts.jms.ResetCounterActionTest;
-import org.jboss.admin.console.web.struts.jms.ResetHistoryActionTest;
-import org.jboss.admin.console.web.struts.jms.SaveDestinationActionTest;
-import org.jboss.admin.console.web.struts.jms.SaveJmsActionTest;
-import org.jboss.admin.console.web.struts.jms.ViewDestinationActionTest;
-import org.jboss.admin.console.web.struts.jms.ViewJmsActionTest;
-import org.jboss.admin.console.web.struts.jms.ViewMessageHistoryActionTest;
-import org.jboss.admin.console.web.struts.jms.ViewMessageStatisticsActionTest;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-public class TestSuiteStrutsJms {
-
-	public static Test suite() {
-		TestSuite suite = new TestSuite(
-				"Test for org.jboss.admin.console.web.struts.jms");
-		//$JUnit-BEGIN$
-		suite.addTestSuite(ListDestinationsActionTest.class);
-		suite.addTestSuite(RemoveMessagesActionTest.class);
-		suite.addTestSuite(SaveDestinationActionTest.class);
-		suite.addTestSuite(ViewJmsActionTest.class);
-		suite.addTestSuite(ViewDestinationActionTest.class);
-		suite.addTestSuite(RemoveDestinationActionTest.class);
-		suite.addTestSuite(ResetHistoryActionTest.class);
-		suite.addTestSuite(SaveJmsActionTest.class);
-		suite.addTestSuite(ViewMessageHistoryActionTest.class);
-		suite.addTestSuite(ResetCounterActionTest.class);
-		suite.addTestSuite(CreateDestinationActionTest.class);
-		suite.addTestSuite(ViewMessageStatisticsActionTest.class);
-		//$JUnit-END$
-		return suite;
-	}
-
-}




More information about the jboss-cvs-commits mailing list