diff options
18 files changed, 25 insertions, 25 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()); } } diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass2FuncPtr.java b/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass2FuncPtr.java index 595ecbc..af66d0e 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass2FuncPtr.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass2FuncPtr.java @@ -33,7 +33,7 @@ import org.junit.Assert; /** * Test {@link Bindingtest2} with {@link T2_InitializeOptions} instance and function pointer... */ -public class BaseTest2FuncPtr extends BaseClass { +public class BaseClass2FuncPtr extends BaseClass { /** * Test Bindingtest2 with T2_InitializeOptions instance and function pointer diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass3PtrStorage.java b/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass3PtrStorage.java index f255c31..982472f 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass3PtrStorage.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass3PtrStorage.java @@ -38,7 +38,7 @@ import org.junit.Assert; /** * Test {@link Bindingtest2} with {@link T2_PointerStorage} instance and pointer pointer.. */ -public class BaseTest3PtrStorage extends BaseClass { +public class BaseClass3PtrStorage extends BaseClass { /** * Test {@link Bindingtest2} with {@link T2_PointerStorage} instance and pointer pointer diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass4JavaCallback.java b/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass4JavaCallback.java index 28e31fd..51987e4 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass4JavaCallback.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass4JavaCallback.java @@ -58,7 +58,7 @@ import org.junit.runners.MethodSorters; /** * Test {@link Bindingtest2} with {@link T2_PointerStorage} instance and pointer pointer.. */ -public class BaseTest4JavaCallback extends BaseClass { +public class BaseClass4JavaCallback extends BaseClass { private static class MyUserParam01 { final long i; diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p1FuncPtr.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p1FuncPtr.java index 91e4526..10faff1 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p1FuncPtr.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p1FuncPtr.java @@ -39,7 +39,7 @@ import java.io.IOException; * Test {@link Bindingtest2p1} with {@link T2_InitializeOptions} instance and function pointer... */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class Test2p1FuncPtr extends BaseTest2FuncPtr { +public class Test2p1FuncPtr extends BaseClass2FuncPtr { /** * Verifies loading of the new library. diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p2FuncPtr.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p2FuncPtr.java index 6a553d8..05ae826 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p2FuncPtr.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test2p2FuncPtr.java @@ -39,7 +39,7 @@ import java.io.IOException; * Test {@link Bindingtest2p1} with {@link T2_InitializeOptions} instance and function pointer... */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class Test2p2FuncPtr extends BaseTest2FuncPtr { +public class Test2p2FuncPtr extends BaseClass2FuncPtr { static NativeLibrary dynamicLookupHelper; diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p1PtrStorage.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p1PtrStorage.java index 531b761..e02852a 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p1PtrStorage.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p1PtrStorage.java @@ -39,7 +39,7 @@ import java.io.IOException; * Test {@link Bindingtest2p1} with {@link T2_PointerStorage} instance and pointer pointer.. */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class Test3p1PtrStorage extends BaseTest3PtrStorage { +public class Test3p1PtrStorage extends BaseClass3PtrStorage { /** * Verifies loading of the new library. diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p2PtrStorage.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p2PtrStorage.java index cd61d2c..642e1bd 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p2PtrStorage.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test3p2PtrStorage.java @@ -39,7 +39,7 @@ import java.io.IOException; * Test {@link Bindingtest2p2} with {@link T2_PointerStorage} instance and pointer pointer.. */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class Test3p2PtrStorage extends BaseTest3PtrStorage { +public class Test3p2PtrStorage extends BaseClass3PtrStorage { static NativeLibrary dynamicLookupHelper; diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p1JavaCallback.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p1JavaCallback.java index cd6b56e..c0bb175 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p1JavaCallback.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p1JavaCallback.java @@ -39,7 +39,7 @@ import java.io.IOException; * Test {@link Bindingtest2p1} with {@link T2_PointerStorage} instance and pointer pointer.. */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class Test4p1JavaCallback extends BaseTest4JavaCallback { +public class Test4p1JavaCallback extends BaseClass4JavaCallback { /** * Verifies loading of the new library. diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p2JavaCallback.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p2JavaCallback.java index 853a869..7dd9a79 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p2JavaCallback.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test4p2JavaCallback.java @@ -39,7 +39,7 @@ import java.io.IOException; * Test {@link Bindingtest2p2} with {@link T2_PointerStorage} instance and pointer pointer.. */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class Test4p2JavaCallback extends BaseTest4JavaCallback { +public class Test4p2JavaCallback extends BaseClass4JavaCallback { static NativeLibrary dynamicLookupHelper; diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/TestPCPP.java b/src/junit/com/jogamp/gluegen/test/junit/generation/TestPCPP.java index 5e06a37..d2209e4 100644 --- a/src/junit/com/jogamp/gluegen/test/junit/generation/TestPCPP.java +++ b/src/junit/com/jogamp/gluegen/test/junit/generation/TestPCPP.java @@ -51,7 +51,7 @@ import org.junit.FixMethodOrder; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class PCPPTest extends SingletonJunitCase { +public class TestPCPP extends SingletonJunitCase { @BeforeClass public static void init() { @@ -145,7 +145,7 @@ public class PCPPTest extends SingletonJunitCase { } public static void main(final String args[]) throws IOException { - final String tstname = PCPPTest.class.getName(); + final String tstname = TestPCPP.class.getName(); org.junit.runner.JUnitCore.main(tstname); } } diff --git a/test/junit/com/jogamp/gluegen/StructValidator.java b/test/junit/com/jogamp/gluegen/StructValidator.java index 6637f4d..d39d80d 100644 --- a/test/junit/com/jogamp/gluegen/StructValidator.java +++ b/test/junit/com/jogamp/gluegen/StructValidator.java @@ -34,7 +34,7 @@ import org.junit.Ignore; import static org.junit.Assert.*; /** - * this file will not compile unless {@link com.jogamp.gluegen.StructAccessorTest} has been run. + * this file will not compile unless {@link com.jogamp.gluegen.TestStructAccessor} has been run. * @author Michael Bien */ @Ignore diff --git a/test/junit/com/jogamp/gluegen/TestStructAccessor.java b/test/junit/com/jogamp/gluegen/TestStructAccessor.java index 46191f1..05f8739 100644 --- a/test/junit/com/jogamp/gluegen/TestStructAccessor.java +++ b/test/junit/com/jogamp/gluegen/TestStructAccessor.java @@ -54,7 +54,7 @@ import static com.jogamp.gluegen.BuildUtil.*; * * @author Michael Bien */ -public class StructAccessorTest { +public class TestStructAccessor { @Test public void generateStruct() { |