aboutsummaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/gluegen/test
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-06-23 06:12:51 +0200
committerSven Gothel <[email protected]>2023-06-23 06:12:51 +0200
commitdf5b63babeec8a9de0ab22a917bbd6c192a2ac0f (patch)
treeb5bd562fe43aa6dac53c501b28bc677f84b5c2ee /src/junit/com/jogamp/gluegen/test
parent10433928d69e58dc6a6b99e9c0a9b0a2669db56a (diff)
GlueGen Test: Test2 -> Test2FuncPtr
Diffstat (limited to 'src/junit/com/jogamp/gluegen/test')
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/generation/Test2FuncPtr.java (renamed from src/junit/com/jogamp/gluegen/test/junit/generation/Test2.java)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/Test2.java b/src/junit/com/jogamp/gluegen/test/junit/generation/Test2FuncPtr.java
index 28a3060..66c7178 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/generation/Test2.java
+++ b/src/junit/com/jogamp/gluegen/test/junit/generation/Test2FuncPtr.java
@@ -45,7 +45,7 @@ import org.junit.runners.MethodSorters;
* Test {@link Bindingtest2} with {@link T2_InitializeOptions} instance and function pointer...
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
-public class Test2 extends BaseClass {
+public class Test2FuncPtr extends BaseClass {
static NativeLibrary dynamicLookupHelper;
@@ -55,7 +55,7 @@ public class Test2 extends BaseClass {
@BeforeClass
public static void chapter__TestLoadLibrary() throws Exception {
BindingJNILibLoader.loadBindingtest2();
- dynamicLookupHelper = NativeLibrary.open("test2", false, false, Test2.class.getClassLoader(), true);
+ dynamicLookupHelper = NativeLibrary.open("test2", false, false, Test2FuncPtr.class.getClassLoader(), true);
Assert.assertNotNull("NativeLibrary.open(test2) failed", dynamicLookupHelper);
Bindingtest2Impl.resetProcAddressTable(dynamicLookupHelper);
@@ -141,7 +141,7 @@ public class Test2 extends BaseClass {
}
public static void main(final String args[]) throws IOException {
- final String tstname = Test2.class.getName();
+ final String tstname = Test2FuncPtr.class.getName();
org.junit.runner.JUnitCore.main(tstname);
}
}