aboutsummaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/junit/com/jogamp/common/util')
-rw-r--r--src/junit/com/jogamp/common/util/TestIntIntHashMap.java4
-rw-r--r--src/junit/com/jogamp/common/util/TestIntObjectHashMap.java4
-rw-r--r--src/junit/com/jogamp/common/util/TestLongIntHashMap.java4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/junit/com/jogamp/common/util/TestIntIntHashMap.java b/src/junit/com/jogamp/common/util/TestIntIntHashMap.java
index 647e471..f46f147 100644
--- a/src/junit/com/jogamp/common/util/TestIntIntHashMap.java
+++ b/src/junit/com/jogamp/common/util/TestIntIntHashMap.java
@@ -55,7 +55,7 @@ import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
-public class IntIntHashMapTest extends SingletonJunitCase {
+public class TestIntIntHashMap extends SingletonJunitCase {
private static int iterations;
private static IntIntUniqueRndValues pairs;
@@ -316,7 +316,7 @@ public class IntIntHashMapTest extends SingletonJunitCase {
}
public static void main(final String args[]) throws IOException {
- org.junit.runner.JUnitCore.main(IntIntHashMapTest.class.getName());
+ org.junit.runner.JUnitCore.main(TestIntIntHashMap.class.getName());
}
}
diff --git a/src/junit/com/jogamp/common/util/TestIntObjectHashMap.java b/src/junit/com/jogamp/common/util/TestIntObjectHashMap.java
index 5573c1a..d97c02b 100644
--- a/src/junit/com/jogamp/common/util/TestIntObjectHashMap.java
+++ b/src/junit/com/jogamp/common/util/TestIntObjectHashMap.java
@@ -53,7 +53,7 @@ import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
-public class IntObjectHashMapTest extends SingletonJunitCase {
+public class TestIntObjectHashMap extends SingletonJunitCase {
private static int iterations;
private static IntIntObjUniqueRndValues pairs;
@@ -176,7 +176,7 @@ public class IntObjectHashMapTest extends SingletonJunitCase {
}
public static void main(final String args[]) throws IOException {
- org.junit.runner.JUnitCore.main(IntObjectHashMapTest.class.getName());
+ org.junit.runner.JUnitCore.main(TestIntObjectHashMap.class.getName());
}
}
diff --git a/src/junit/com/jogamp/common/util/TestLongIntHashMap.java b/src/junit/com/jogamp/common/util/TestLongIntHashMap.java
index 60f404d..2be9738 100644
--- a/src/junit/com/jogamp/common/util/TestLongIntHashMap.java
+++ b/src/junit/com/jogamp/common/util/TestLongIntHashMap.java
@@ -55,7 +55,7 @@ import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
-public class LongIntHashMapTest extends SingletonJunitCase {
+public class TestLongIntHashMap extends SingletonJunitCase {
private static int iterations;
private static LongIntUniqueRndValues pairs;
@@ -206,7 +206,7 @@ public class LongIntHashMapTest extends SingletonJunitCase {
}
public static void main(final String args[]) throws IOException {
- org.junit.runner.JUnitCore.main(LongIntHashMapTest.class.getName());
+ org.junit.runner.JUnitCore.main(TestLongIntHashMap.class.getName());
}
}