diff options
author | Sven Gothel <[email protected]> | 2011-02-01 04:27:20 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-01 04:27:20 +0100 |
commit | e49386191079b08ee216f056338979be80029264 (patch) | |
tree | c9ba16672f1aca8429288a2a2632c4736d56930c /src | |
parent | daea466337b1ed37e7e59d5a482ec69290155220 (diff) |
junit glu: proper path and NOUI class suffix
Diffstat (limited to 'src')
-rwxr-xr-x | src/test/com/jogamp/opengl/test/junit/jogl/glu/TestGluUnprojectDoubleNOUI.java (renamed from src/junit/com/jogamp/test/junit/jogl/glu/TestGluUnprojectDouble.java) | 4 | ||||
-rwxr-xr-x | src/test/com/jogamp/opengl/test/junit/jogl/glu/TestGluUnprojectFloatNOUI.java (renamed from src/junit/com/jogamp/test/junit/jogl/glu/TestGluUnprojectFloat.java) | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/junit/com/jogamp/test/junit/jogl/glu/TestGluUnprojectDouble.java b/src/test/com/jogamp/opengl/test/junit/jogl/glu/TestGluUnprojectDoubleNOUI.java index bc37e1395..348a76930 100755 --- a/src/junit/com/jogamp/test/junit/jogl/glu/TestGluUnprojectDouble.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/glu/TestGluUnprojectDoubleNOUI.java @@ -8,7 +8,7 @@ import org.junit.Test; /** * @author Julien Gouesse */ -public class TestGluUnprojectDouble { +public class TestGluUnprojectDoubleNOUI { @Test public void test(){ @@ -24,6 +24,6 @@ public class TestGluUnprojectDouble { } public static void main(String args[]) { - org.junit.runner.JUnitCore.main(TestGluUnprojectDouble.class.getName()); + org.junit.runner.JUnitCore.main(TestGluUnprojectDoubleNOUI.class.getName()); } } diff --git a/src/junit/com/jogamp/test/junit/jogl/glu/TestGluUnprojectFloat.java b/src/test/com/jogamp/opengl/test/junit/jogl/glu/TestGluUnprojectFloatNOUI.java index 01cda2201..c26bd94c4 100755 --- a/src/junit/com/jogamp/test/junit/jogl/glu/TestGluUnprojectFloat.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/glu/TestGluUnprojectFloatNOUI.java @@ -8,7 +8,7 @@ import org.junit.Test; /** * @author Julien Gouesse */ -public class TestGluUnprojectFloat { +public class TestGluUnprojectFloatNOUI { @Test @@ -25,6 +25,6 @@ public class TestGluUnprojectFloat { } public static void main(String args[]) { - org.junit.runner.JUnitCore.main(TestGluUnprojectFloat.class.getName()); + org.junit.runner.JUnitCore.main(TestGluUnprojectFloatNOUI.class.getName()); } } |