[jboss-cvs] JBossAS SVN: r59729 - 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:11 EST 2007


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

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

Copied: projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJbossmq.java (from rev 59728, projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJms.java)
===================================================================
--- projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJbossmq.java	                        (rev 0)
+++ projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJbossmq.java	2007-01-18 00:36:11 UTC (rev 59729)
@@ -0,0 +1,46 @@
+/*
+ * 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.service.jms.DeploymentServiceDestinationHelperTest;
+import org.jboss.admin.service.jms.DeploymentServiceJmsHelperTest;
+import org.jboss.admin.service.jms.MBeanServerDestinationHelperTest;
+import org.jboss.admin.service.jms.MBeanServerJmsHelperTest;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class TestSuiteServiceJms {
+
+	public static Test suite() {
+		TestSuite suite = new TestSuite("Test for org.jboss.admin.service.jms");
+		//$JUnit-BEGIN$
+		suite.addTestSuite(MBeanServerDestinationHelperTest.class);
+		suite.addTestSuite(MBeanServerJmsHelperTest.class);
+		suite.addTestSuite(DeploymentServiceJmsHelperTest.class);
+		suite.addTestSuite(DeploymentServiceDestinationHelperTest.class);
+		//$JUnit-END$
+		return suite;
+	}
+
+}

Deleted: projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJms.java
===================================================================
--- projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJms.java	2007-01-18 00:35:48 UTC (rev 59728)
+++ projects/admin-console/trunk/src/test/org/jboss/admin/TestSuiteServiceJms.java	2007-01-18 00:36:11 UTC (rev 59729)
@@ -1,46 +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.service.jms.DeploymentServiceDestinationHelperTest;
-import org.jboss.admin.service.jms.DeploymentServiceJmsHelperTest;
-import org.jboss.admin.service.jms.MBeanServerDestinationHelperTest;
-import org.jboss.admin.service.jms.MBeanServerJmsHelperTest;
-
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-public class TestSuiteServiceJms {
-
-	public static Test suite() {
-		TestSuite suite = new TestSuite("Test for org.jboss.admin.service.jms");
-		//$JUnit-BEGIN$
-		suite.addTestSuite(MBeanServerDestinationHelperTest.class);
-		suite.addTestSuite(MBeanServerJmsHelperTest.class);
-		suite.addTestSuite(DeploymentServiceJmsHelperTest.class);
-		suite.addTestSuite(DeploymentServiceDestinationHelperTest.class);
-		//$JUnit-END$
-		return suite;
-	}
-
-}




More information about the jboss-cvs-commits mailing list