summaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/nio
diff options
context:
space:
mode:
Diffstat (limited to 'src/junit/com/jogamp/common/nio')
-rw-r--r--src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java b/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java
index e587acf..43d6a61 100644
--- a/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java
+++ b/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java
@@ -1,6 +1,8 @@
package com.jogamp.common.nio;
+import java.io.IOException;
+
import com.jogamp.common.os.*;
import org.junit.Assert;
@@ -43,4 +45,9 @@ public class TestPointerBufferEndian {
public void testIndirect () {
testImpl (false);
}
+
+ public static void main(String args[]) throws IOException {
+ String tstname = TestPointerBufferEndian.class.getName();
+ org.junit.runner.JUnitCore.main(tstname);
+ }
}