summaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/junit/com/jogamp/common/util/IntObjectHashMapTest.java')
-rw-r--r--src/junit/com/jogamp/common/util/IntObjectHashMapTest.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java b/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
index 18cdf6c..11bf765 100644
--- a/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
+++ b/src/junit/com/jogamp/common/util/IntObjectHashMapTest.java
@@ -3,14 +3,14 @@
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
- *
+ *
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
- *
+ *
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
@@ -20,12 +20,12 @@
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
+ *
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of JogAmp Community.
*/
-
+
/**
* Created on Sunday, March 28 2010 21:01
*/
@@ -45,7 +45,7 @@ import static org.junit.Assert.*;
/**
*
* @author Michael Bien
- * @author Sven Gothel
+ * @author Sven Gothel
*/
import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
@@ -85,20 +85,20 @@ public class IntObjectHashMapTest {
assertEquals(map.size(), intmap.size());
- for (Entry<Integer, IntCloneable> entry : map.entrySet()) {
+ for (final Entry<Integer, IntCloneable> entry : map.entrySet()) {
assertTrue(intmap.containsKey(entry.getKey()));
assertTrue(intmap.containsValue(entry.getValue()));
}
int i = 0;
- for (Entry<Integer, IntCloneable> entry : map.entrySet()) {
+ for (final Entry<Integer, IntCloneable> entry : map.entrySet()) {
assertEquals(entry.getValue(), intmap.remove(entry.getKey()));
assertEquals(map.size() - i - 1, intmap.size());
i++;
}
}
-
+
@Test
public void iteratorTest() {
@@ -107,14 +107,14 @@ public class IntObjectHashMapTest {
for (int i = 0; i < iterations; i++) {
intmap.put(pairs.keys[i], pairs.values[i]);
}
-
- Iterator<IntObjectHashMap.Entry> iterator = intmap.iterator();
+
+ final Iterator<IntObjectHashMap.Entry> iterator = intmap.iterator();
assertNotNull(iterator);
assertTrue(iterator.hasNext());
int n = 0;
while (iterator.hasNext()) {
- IntObjectHashMap.Entry entry = iterator.next();
+ final IntObjectHashMap.Entry entry = iterator.next();
assertNotNull(entry);
n++;
}
@@ -132,25 +132,25 @@ public class IntObjectHashMapTest {
for (int i = 0; i < iterations; i++) {
intmap.put(pairs.keys[i], pairs.values[i]);
}
-
+
final IntObjectHashMap intmapCopy = (IntObjectHashMap) intmap.clone();
-
+
assertEquals(intmap.size(), intmapCopy.size());
assertEquals(intmap.getKeyNotFoundValue(), intmapCopy.getKeyNotFoundValue());
-
- Iterator<IntObjectHashMap.Entry> iterator = intmap.iterator();
+
+ final Iterator<IntObjectHashMap.Entry> iterator = intmap.iterator();
assertNotNull(iterator);
assertTrue(iterator.hasNext());
- Iterator<IntObjectHashMap.Entry> iteratorCopy = intmapCopy.iterator();
+ final Iterator<IntObjectHashMap.Entry> iteratorCopy = intmapCopy.iterator();
assertNotNull(iteratorCopy);
assertTrue(iteratorCopy.hasNext());
-
+
int n = 0;
while (iterator.hasNext()) {
assertTrue(iteratorCopy.hasNext());
- IntObjectHashMap.Entry entry = iterator.next();
- IntObjectHashMap.Entry entryCopy = iteratorCopy.next();
+ final IntObjectHashMap.Entry entry = iterator.next();
+ final IntObjectHashMap.Entry entryCopy = iteratorCopy.next();
assertNotNull(entry);
assertNotNull(entryCopy);
assertEquals(entry.key, entryCopy.key);
@@ -168,12 +168,12 @@ public class IntObjectHashMapTest {
assertTrue(intmapCopy.containsValue(pairs.values[i]));
assertTrue(intmapCopy.containsKey(pairs.keys[i]));
}
-
+
// out.println(intmap);
}
- public static void main(String args[]) throws IOException {
+ public static void main(final String args[]) throws IOException {
org.junit.runner.JUnitCore.main(IntObjectHashMapTest.class.getName());
}