aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-10-03 05:51:27 +0200
committerSven Gothel <[email protected]>2014-10-03 05:51:27 +0200
commitda6339f8f712237dbd58180afde214e3f7692ee1 (patch)
tree46ea78221329fbfd02b79e50e217b17793c06638
parent99db277d1acf65d2f2ceb13cffc1a16ad2bf6cd8 (diff)
SingletonTestCase -> SingletonJunitCase: Adapt to GlueGen commit 773d96584b4edc13eb6ff689eaf891aab09aa5a4
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/acore/TestVersionSemanticsNOUI.java4
-rw-r--r--src/test/com/jogamp/opengl/test/junit/util/UITestCase.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestVersionSemanticsNOUI.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestVersionSemanticsNOUI.java
index bf8552208..5cf9655f8 100644
--- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestVersionSemanticsNOUI.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestVersionSemanticsNOUI.java
@@ -41,12 +41,12 @@ import org.semver.Delta;
import com.jogamp.common.util.JogampVersion;
import com.jogamp.common.util.VersionNumberString;
-import com.jogamp.junit.util.SingletonTestCase;
+import com.jogamp.junit.util.SingletonJunitCase;
import com.jogamp.junit.util.VersionSemanticsUtil;
import com.jogamp.opengl.JoglVersion;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
-public class TestVersionSemanticsNOUI extends SingletonTestCase {
+public class TestVersionSemanticsNOUI extends SingletonJunitCase {
static final String jarFile = "jogl-all.jar";
static final DiffCriteria diffCriteria = new org.osjava.jardiff.SimpleDiffCriteria();
diff --git a/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java b/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java
index 3655eceac..fb9e2bd14 100644
--- a/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java
+++ b/src/test/com/jogamp/opengl/test/junit/util/UITestCase.java
@@ -46,7 +46,7 @@ import javax.media.opengl.GLCapabilitiesImmutable;
import javax.media.opengl.GLDrawable;
import javax.media.opengl.GLEventListener;
-import com.jogamp.junit.util.SingletonTestCase;
+import com.jogamp.junit.util.SingletonJunitCase;
import com.jogamp.opengl.util.GLReadBufferUtil;
import com.jogamp.opengl.util.texture.TextureIO;
@@ -58,7 +58,7 @@ import org.junit.runners.model.FrameworkMethod;
import org.junit.runners.model.TestClass;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
-public abstract class UITestCase extends SingletonTestCase {
+public abstract class UITestCase extends SingletonJunitCase {
private static volatile boolean resetXRandRIfX11AfterClass = false;
private static volatile int maxMethodNameLen = 0;