diff options
author | Sven Gothel <[email protected]> | 2014-08-31 17:50:05 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-08-31 17:50:05 +0200 |
commit | 850cbdb9213c0c7b530f81e69b49fcc47c37b4d0 (patch) | |
tree | 1b7a7cb0133188376c68a018ed71ae1d8c95c60d /src/test | |
parent | ab07820e346f23aabc9d9364b7205017422cfaed (diff) |
TestSharedContextNewtAWTBug523: Fix junit usage ..
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java index 11ca64258..d3cdf5e95 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestSharedContextNewtAWTBug523.java @@ -79,7 +79,6 @@ import com.jogamp.opengl.test.junit.util.AWTRobotUtil; import com.jogamp.opengl.test.junit.util.UITestCase; import com.jogamp.opengl.test.junit.util.AWTRobotUtil.WindowClosingListener; import com.jogamp.opengl.util.Animator; -import com.jogamp.opengl.util.GLBuffers; /** @@ -819,19 +818,7 @@ public class TestSharedContextNewtAWTBug523 extends UITestCase { } } } - - final String testname = TestSharedContextNewtAWTBug523.class.getName(); - org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(new String[] { - testname, - "filtertrace=true", - "haltOnError=false", - "haltOnFailure=false", - "showoutput=true", - "outputtoformatters=true", - "logfailedtests=true", - "logtestlistenerevents=true", - "formatter=org.apache.tools.ant.taskdefs.optional.junit.PlainJUnitResultFormatter", - "formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,TEST-"+testname+".xml" } ); + org.junit.runner.JUnitCore.main(TestSharedContextNewtAWTBug523.class.getName()); } } |