TestMultiKeyMap new test case for Serialization and Deserialization
---------------------------------------------------------------------
Key: COLLECTIONS-267
URL: https://issues.apache.org/jira/browse/COLLECTIONS-267
Project: Commons Collections
Issue Type: Test
Affects Versions: 3.2
Environment: WindowXP(CYGWIN) JDK 1.5
Reporter: Alan Mehio
Priority: Trivial
We should add a serialzation and deserialzation test case for the class
MultiKeyMap since there is a testCone() method it would be good to have the
below test case in the TestMultiKeyMap
public void testSerializationDeserialization() {
MultiKeyMap serialized = new MultiKeyMap();
serialized.put(new MultiKey(I1, I2), "1-2");
try {
ObjectOutputStream out = new ObjectOutputStream(new
FileOutputStream("map.ser"));
out.writeObject(serialized);
ObjectInputStream in = new ObjectInputStream(new
FileInputStream("map.ser"));
MultiKeyMap deserialzed = (MultiKeyMap)in.readObject();
assertEquals(serialized.size(), deserialzed.size());
}catch(Exception ex){
fail("Test failed due to exception" + ex.getMessage() );
}
}
I have checked the latest class at
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/map/MultiKeyMap.java?revision=560660
I could not find the test method
thanks
Alan Mehio
London, UK
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.