Author: rajdavies
Date: Tue Mar 13 09:39:46 2007
New Revision: 517764
URL: http://svn.apache.org/viewvc?view=rev&rev=517764
Log:
test for converting Properties to and from a String
Added:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/util/MarshallingSupportTest.java
(with props)
Added:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/util/MarshallingSupportTest.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/util/MarshallingSupportTest.java?view=auto&rev=517764
==============================================================================
---
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/util/MarshallingSupportTest.java
(added)
+++
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/util/MarshallingSupportTest.java
Tue Mar 13 09:39:46 2007
@@ -0,0 +1,49 @@
+/**
+ *
+ */
+
+package org.apache.activemq.util;
+
+import java.io.IOException;
+import java.util.Properties;
+import junit.framework.TestCase;
+
+/**
+ * @author rajdavies
+ *
+ */
+public class MarshallingSupportTest extends TestCase{
+
+ /**
+ * @throws java.lang.Exception
+ * @see junit.framework.TestCase#setUp()
+ */
+ protected void setUp() throws Exception{
+ super.setUp();
+ }
+
+ /**
+ * @throws java.lang.Exception
+ * @see junit.framework.TestCase#tearDown()
+ */
+ protected void tearDown() throws Exception{
+ super.tearDown();
+ }
+
+ /**
+ * Test method for [EMAIL PROTECTED]
org.apache.activemq.util.MarshallingSupport#propertiesToString(java.util.Properties)}.
+ *
+ * @throws Exception
+ */
+ public void testPropertiesToString() throws Exception{
+ Properties props=new Properties();
+ for(int i=0;i<10;i++){
+ String key="key"+i;
+ String value="value"+i;
+ props.put(key,value);
+ }
+ String str=MarshallingSupport.propertiesToString(props);
+ Properties props2=MarshallingSupport.stringToProperties(str);
+ assertEquals(props,props2);
+ }
+}
Propchange:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/util/MarshallingSupportTest.java
------------------------------------------------------------------------------
svn:eol-style = native