[hornetq-commits] JBoss hornetq SVN: r11859 - trunk/tests/unit-tests/src/test/java/org/hornetq/tests/unit/ra.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Dec 6 08:15:48 EST 2011


Author: borges
Date: 2011-12-06 08:15:46 -0500 (Tue, 06 Dec 2011)
New Revision: 11859

Modified:
   trunk/tests/unit-tests/src/test/java/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java
Log:
Remove sys.out calls.

Modified: trunk/tests/unit-tests/src/test/java/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java
===================================================================
--- trunk/tests/unit-tests/src/test/java/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java	2011-12-06 13:01:30 UTC (rev 11858)
+++ trunk/tests/unit-tests/src/test/java/org/hornetq/tests/unit/ra/HornetQResourceAdapterConfigTest.java	2011-12-06 13:15:46 UTC (rev 11859)
@@ -21,6 +21,15 @@
 */
 package org.hornetq.tests.unit.ra;
 
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.lang.reflect.Method;
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
+
 import org.hornetq.ra.HornetQResourceAdapter;
 import org.hornetq.tests.util.UnitTestCase;
 import org.w3c.dom.Document;
@@ -29,15 +38,7 @@
 import org.w3c.dom.NodeList;
 import org.xml.sax.InputSource;
 
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-import java.io.ByteArrayInputStream;
-import java.io.InputStream;
-import java.lang.reflect.Method;
-import java.util.HashMap;
-import java.util.Map;
 
-
 /**
  * This test is used to generate the commented out configs in the src/config/ra.xml. If you add a setter to the HornetQResourceAdapter
  * this test should fail, if it does paste the new commented out configs into the ra.xml file and in here. dont forget to
@@ -273,18 +274,18 @@
          "         <config-property-type>long</config-property-type>\n" +
          "         <config-property-value></config-property-value>\n" +
          "      </config-property>\n" +
-         "      <config-property>" + 
-         "         <description></description>" + 
-         "         <config-property-name>TransactionManagerLocatorMethod</config-property-name>" + 
-         "         <config-property-type>java.lang.String</config-property-type>" + 
-         "         <config-property-value></config-property-value>" + 
-         "      </config-property>" + 
-         "      <config-property>" + 
-         "         <description></description>" + 
-         "         <config-property-name>TransactionManagerLocatorClass</config-property-name>" + 
-         "         <config-property-type>java.lang.String</config-property-type>" + 
-         "         <config-property-value></config-property-value>" + 
-         "      </config-property>" + 
+         "      <config-property>" +
+         "         <description></description>" +
+         "         <config-property-name>TransactionManagerLocatorMethod</config-property-name>" +
+         "         <config-property-type>java.lang.String</config-property-type>" +
+         "         <config-property-value></config-property-value>" +
+         "      </config-property>" +
+         "      <config-property>" +
+         "         <description></description>" +
+         "         <config-property-name>TransactionManagerLocatorClass</config-property-name>" +
+         "         <config-property-type>java.lang.String</config-property-type>" +
+         "         <config-property-value></config-property-value>" +
+         "      </config-property>" +
          "      <config-property>\n" +
          "         <description>How many attempts should be made when connecting the MDB</description>\n" +
          "         <config-property-name>SetupAttempts</config-property-name>\n" +
@@ -322,10 +323,9 @@
          assertEquals(el.toString(), elementsByTagName.getLength(), 1);
          Node configPropertyNameNode = elementsByTagName.item(0);
          String configPropertyName = configPropertyNameNode.getTextContent();
-         System.out.println("configPropertyName = " + configPropertyName);
          Method setter = methodList.remove("set" + configPropertyName);
          assertNotNull("setter " + configPropertyName + " does not exist", setter);
-         Class c = setter.getParameterTypes()[0];
+         Class<?> c = setter.getParameterTypes()[0];
          elementsByTagName = el.getElementsByTagName("config-property-type");
          assertEquals("setter " + configPropertyName + " has no type set", elementsByTagName.getLength(), 1);
          Node configPropertyTypeNode = elementsByTagName.item(0);
@@ -345,12 +345,7 @@
             newConfig.append("\"         <config-property-value></config-property-value>\" + \n");
             newConfig.append("\"      </config-property>\" + \n");
          }
-         System.out.println(newConfig);
          fail("methods not shown please see previous and add");
       }
-      else
-      {
-         System.out.println(commentedOutConfigs);
-      }
    }
 }



More information about the hornetq-commits mailing list