aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-07-10 13:58:00 +0200
committerSven Gothel <[email protected]>2013-07-10 13:58:00 +0200
commit2b6f60f67e470da2217dfc8ea9ddd566357715d4 (patch)
treeb6a71dcb47555b8d8ffed4698c09932c53e88592 /src
parent214a426cf52c10519cf82e5fa00c4c76d1224379 (diff)
TestMainVersionGLWindowNEWT: Add 'manual' version get/print for verification.
Diffstat (limited to 'src')
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/acore/TestMainVersionGLWindowNEWT.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestMainVersionGLWindowNEWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestMainVersionGLWindowNEWT.java
index d178e34f4..41c6063dc 100644
--- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestMainVersionGLWindowNEWT.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestMainVersionGLWindowNEWT.java
@@ -32,12 +32,18 @@ import java.io.IOException;
import org.junit.Test;
import com.jogamp.newt.opengl.GLWindow;
+import com.jogamp.opengl.JoglVersion;
import com.jogamp.opengl.test.junit.util.UITestCase;
public class TestMainVersionGLWindowNEWT extends UITestCase {
@Test
public void testMain() throws InterruptedException {
+ JoglVersion j = JoglVersion.getInstance();
+ System.out.println("Implementation-Version: "+j.getImplementationVersion());
+ System.out.println("Implementation-Build: "+j.getImplementationBuild());
+ System.out.println("Implementation-Branch: "+j.getImplementationBranch());
+ System.out.println("Implementation-Commit: "+j.getImplementationCommit());
GLWindow.main(null);
}