diff options
author | Sven Gothel <[email protected]> | 2023-08-05 03:16:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-05 03:16:06 +0200 |
commit | 0d3c2b630e06045013250547b3d0cb1bd9f99386 (patch) | |
tree | 0b15ff413169874cee4e85286778a3ed191303a7 /src/junit/com/jogamp/common/util/TestIntObjectHashMap.java | |
parent | 177ee444d1b86e6412f636d5f4e8f0695d418246 (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/TestIntObjectHashMap.java')
-rw-r--r-- | src/junit/com/jogamp/common/util/TestIntObjectHashMap.java | 4 |
1 files changed, 2 insertions, 2 deletions
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()); } } |