diff options
Diffstat (limited to 'src/junit/com/jogamp/common')
6 files changed, 12 insertions, 12 deletions
diff --git a/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java b/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java index cb6200d..cddf371 100644 --- a/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java +++ b/src/junit/com/jogamp/common/net/TestAssetURLConnectionRegistered.java @@ -15,13 +15,13 @@ import org.junit.FixMethodOrder; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class AssetURLConnectionRegisteredTest extends AssetURLConnectionBase { +public class TestAssetURLConnectionRegistered extends AssetURLConnectionBase { @BeforeClass public static void assetRegistration() throws Exception { try { System.err.println("******* Asset URL Stream Handler Registration: PRE"); - Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(AssetURLConnectionRegisteredTest.class.getClassLoader())); + Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(TestAssetURLConnectionRegistered.class.getClassLoader())); Assert.assertNotNull(AssetURLContext.getRegisteredHandler()); System.err.println("******* Asset URL Stream Handler Registration: POST"); } catch (final Exception e) { @@ -85,7 +85,7 @@ public class AssetURLConnectionRegisteredTest extends AssetURLConnectionBase { } public static void main(final String args[]) throws IOException { - final String tstname = AssetURLConnectionRegisteredTest.class.getName(); + final String tstname = TestAssetURLConnectionRegistered.class.getName(); org.junit.runner.JUnitCore.main(tstname); } } diff --git a/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java b/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java index 1bb88c5..398d0e0 100644 --- a/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java +++ b/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java @@ -14,7 +14,7 @@ import org.junit.FixMethodOrder; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class AssetURLConnectionUnregisteredTest extends AssetURLConnectionBase { +public class TestAssetURLConnectionUnregistered extends AssetURLConnectionBase { @Test public void assetUnregisteredURLConnection_RT2() throws IOException { testAssetConnection(createAssetURLConnection(test_asset_rt2_url, this.getClass().getClassLoader()), test_asset_rt_entry); @@ -58,7 +58,7 @@ public class AssetURLConnectionUnregisteredTest extends AssetURLConnectionBase { } public static void main(final String args[]) throws IOException { - final String tstname = AssetURLConnectionUnregisteredTest.class.getName(); + final String tstname = TestAssetURLConnectionUnregistered.class.getName(); org.junit.runner.JUnitCore.main(tstname); } } diff --git a/src/junit/com/jogamp/common/net/TestUri02Composing.java b/src/junit/com/jogamp/common/net/TestUri02Composing.java index 51a5cc6..f30f186 100644 --- a/src/junit/com/jogamp/common/net/TestUri02Composing.java +++ b/src/junit/com/jogamp/common/net/TestUri02Composing.java @@ -21,7 +21,7 @@ public class TestUri02Composing extends SingletonJunitCase { public static void assetRegistration() throws Exception { try { System.err.println("******* Asset URL Stream Handler Registration: PRE"); - Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(AssetURLConnectionRegisteredTest.class.getClassLoader())); + Assert.assertTrue("GenericURLStreamHandlerFactory.register() failed", AssetURLContext.registerHandler(TestAssetURLConnectionRegistered.class.getClassLoader())); Assert.assertNotNull(AssetURLContext.getRegisteredHandler()); System.err.println("******* Asset URL Stream Handler Registration: POST"); } catch (final Exception e) { 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()); } } |