diff options
author | Sven Gothel <[email protected]> | 2013-10-31 02:51:04 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-31 02:51:04 +0100 |
commit | c532abc1618fde46ef36bd70acdcc6b1d45fcbf1 (patch) | |
tree | 839b64f8c0f22385fd898b1ec6d8abf16acec2a0 | |
parent | c87c9ca2d60322ba15b18f8bb20568d7442985c3 (diff) |
Rename Binary*Test -> TestBinary*NOUI to get picked up by build-test.xml's junit.run.noui
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary16NOUI.java (renamed from src/test/com/jogamp/opengl/test/junit/jogl/math/Binary16Test.java) | 2 | ||||
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary32NOUI.java (renamed from src/test/com/jogamp/opengl/test/junit/jogl/math/Binary32Test.java) | 2 | ||||
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary64NOUI.java (renamed from src/test/com/jogamp/opengl/test/junit/jogl/math/Binary64Test.java) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/math/Binary16Test.java b/src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary16NOUI.java index d9e84eeab..b6abcf6ee 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/math/Binary16Test.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary16NOUI.java @@ -33,7 +33,7 @@ import org.junit.Test; import com.jogamp.opengl.math.Binary16; -public final class Binary16Test +public final class TestBinary16NOUI { /** * Exponents in the range [-15, 16] are encoded and decoded correctly. diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/math/Binary32Test.java b/src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary32NOUI.java index 42e7f08a1..d2a9a92ce 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/math/Binary32Test.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary32NOUI.java @@ -33,7 +33,7 @@ import org.junit.Test; import com.jogamp.opengl.math.Binary32; -public class Binary32Test +public class TestBinary32NOUI { @SuppressWarnings("static-method") @Test public void testInfinityExponent() { diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/math/Binary64Test.java b/src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary64NOUI.java index 78806985f..f16ea2bee 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/math/Binary64Test.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/math/TestBinary64NOUI.java @@ -33,7 +33,7 @@ import org.junit.Test; import com.jogamp.opengl.math.Binary64; -public class Binary64Test +public class TestBinary64NOUI { @SuppressWarnings("static-method") @Test public void testInfinityExponent() { |