diff options
author | Sven Gothel <[email protected]> | 2010-12-13 03:22:08 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-13 03:22:08 +0100 |
commit | ebfb837b95fc6eb6ec9102004d1d068933957400 (patch) | |
tree | c4c221582edf538c5e6390404ae20dfdfb97bbc3 /src | |
parent | 84a76425dd10933a7ad033920a1e0ce12a2a107b (diff) |
tests: test.auto.run (junit.run) and test.manual.run
Diffstat (limited to 'src')
-rw-r--r-- | src/test/com/jogamp/opengl/test/bugs/Bug427GLJPanelTest1.java (renamed from src/test/com/jogamp/opengl/test/bugs/Bug427GLJPanel.java) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/com/jogamp/opengl/test/bugs/Bug427GLJPanel.java b/src/test/com/jogamp/opengl/test/bugs/Bug427GLJPanelTest1.java index 378952b59..ceee2c876 100644 --- a/src/test/com/jogamp/opengl/test/bugs/Bug427GLJPanel.java +++ b/src/test/com/jogamp/opengl/test/bugs/Bug427GLJPanelTest1.java @@ -5,10 +5,10 @@ import java.awt.*; import javax.media.opengl.*;
import javax.media.opengl.awt.*;
-public class Bug427GLJPanel extends JFrame implements GLEventListener {
+public class Bug427GLJPanelTest1 extends JFrame implements GLEventListener {
- public Bug427GLJPanel() {
- super("JOGL Hello World");
+ public Bug427GLJPanelTest1() {
+ super("Bug427GLJPanelTest1");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new BorderLayout());
@@ -29,7 +29,7 @@ public class Bug427GLJPanel extends JFrame implements GLEventListener { }
public static void main(String[] args) {
- Bug427GLJPanel demo = new Bug427GLJPanel();
+ Bug427GLJPanelTest1 demo = new Bug427GLJPanelTest1();
demo.setVisible(true);
}
|