From 0d3c2b630e06045013250547b3d0cb1bd9f99386 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 5 Aug 2023 03:16:06 +0200 Subject: Cleanup unit test class names (pt2): Try to start w/ 'Test', remove intermediate 'Test' for supporting, non-test classes --- src/junit/com/jogamp/common/util/TestIntObjectHashMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/junit/com/jogamp/common/util/TestIntObjectHashMap.java') 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()); } } -- cgit v1.2.3