aboutsummaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/util/TestLongIntHashMap.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-08-05 03:16:06 +0200
committerSven Gothel <[email protected]>2023-08-05 03:16:06 +0200
commit0d3c2b630e06045013250547b3d0cb1bd9f99386 (patch)
tree0b15ff413169874cee4e85286778a3ed191303a7 /src/junit/com/jogamp/common/util/TestLongIntHashMap.java
parent177ee444d1b86e6412f636d5f4e8f0695d418246 (diff)
Cleanup unit test class names (pt2): Try to start w/ 'Test', remove intermediate 'Test' for supporting, non-test classes
Diffstat (limited to 'src/junit/com/jogamp/common/util/TestLongIntHashMap.java')
-rw-r--r--src/junit/com/jogamp/common/util/TestLongIntHashMap.java4
1 files changed, 2 insertions, 2 deletions
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());
}
}