mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-09 11:35:28 +00:00
fixed test comments
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130568 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd7f71e66d
commit
32bb853f40
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.10 2002/02/22 22:01:48 morgand Exp $
|
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/Attic/TestMap.java,v 1.11 2002/02/22 22:21:50 morgand Exp $
|
||||||
* $Revision: 1.10 $
|
* $Revision: 1.11 $
|
||||||
* $Date: 2002/02/22 22:01:48 $
|
* $Date: 2002/02/22 22:21:50 $
|
||||||
*
|
*
|
||||||
* ====================================================================
|
* ====================================================================
|
||||||
*
|
*
|
||||||
@ -87,7 +87,7 @@ import java.util.NoSuchElementException;
|
|||||||
*
|
*
|
||||||
* @author Michael Smith
|
* @author Michael Smith
|
||||||
* @author Rodney Waldhoff
|
* @author Rodney Waldhoff
|
||||||
* @version $Id: TestMap.java,v 1.10 2002/02/22 22:01:48 morgand Exp $
|
* @version $Id: TestMap.java,v 1.11 2002/02/22 22:21:50 morgand Exp $
|
||||||
*/
|
*/
|
||||||
public abstract class TestMap extends TestObject {
|
public abstract class TestMap extends TestObject {
|
||||||
|
|
||||||
@ -970,7 +970,7 @@ public abstract class TestMap extends TestObject {
|
|||||||
// test to make sure the canonical form has been preserved
|
// test to make sure the canonical form has been preserved
|
||||||
if (!(makeEmptyMap() instanceof Serializable)) return;
|
if (!(makeEmptyMap() instanceof Serializable)) return;
|
||||||
Map map = (Map) readExternalFormFromDisk(getCanonicalEmptyMapName(makeEmptyMap()));
|
Map map = (Map) readExternalFormFromDisk(getCanonicalEmptyMapName(makeEmptyMap()));
|
||||||
assertTrue("Maps is empty",map.isEmpty() == true);
|
assertTrue("Map is empty",map.isEmpty() == true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -989,7 +989,7 @@ public abstract class TestMap extends TestObject {
|
|||||||
// test to make sure the canonical form has been preserved
|
// test to make sure the canonical form has been preserved
|
||||||
if (!(makeFullMap() instanceof Serializable)) return;
|
if (!(makeFullMap() instanceof Serializable)) return;
|
||||||
Map map = (Map) readExternalFormFromDisk(getCanonicalFullMapName(makeFullMap()));
|
Map map = (Map) readExternalFormFromDisk(getCanonicalFullMapName(makeFullMap()));
|
||||||
assertEquals("Both maps are same size",map.size(), getSampleKeys().length);
|
assertEquals("Map is the right size",map.size(), getSampleKeys().length);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user