From 6a466e3f1e92a1e831ea61d1bb72c32f56b2a28d Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 8 Sep 2014 13:49:45 +0200 Subject: Bug 1063: Further Uri completion - As a result of JOGL Uri adoption --- .../com/jogamp/common/net/TestURIQueryProps.java | 50 ---------------------- .../com/jogamp/common/net/TestUriQueryProps.java | 49 +++++++++++++++++++++ 2 files changed, 49 insertions(+), 50 deletions(-) delete mode 100644 src/junit/com/jogamp/common/net/TestURIQueryProps.java create mode 100644 src/junit/com/jogamp/common/net/TestUriQueryProps.java (limited to 'src/junit/com') diff --git a/src/junit/com/jogamp/common/net/TestURIQueryProps.java b/src/junit/com/jogamp/common/net/TestURIQueryProps.java deleted file mode 100644 index 4f4435a..0000000 --- a/src/junit/com/jogamp/common/net/TestURIQueryProps.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.jogamp.common.net; - -import static com.jogamp.common.net.URIDumpUtil.showURI; - -import java.io.IOException; -import java.net.URI; -import java.net.URISyntaxException; - -import org.junit.Assert; -import org.junit.Test; - -import com.jogamp.junit.util.JunitTracer; - -import org.junit.FixMethodOrder; -import org.junit.runners.MethodSorters; - -@FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class TestURIQueryProps extends JunitTracer { - - @Test - public void test() throws IOException, URISyntaxException { - final String SCHEME = "camera"; - final String HOST = "somewhere"; - final String PATH = "0"; - final String[] args = new String[] { - SCHEME+"://"+HOST+"/"+PATH, - SCHEME+"://"+HOST+"/"+PATH+"?p1=1", - }; - for(int i=0; i -> "+uri1+" -> NULL"); - } else { - final URI uri1T = data.appendQuery(uri0); - showURI(uri1T); - Assert.assertEquals(uri1, uri1T); - } - } - } - public static void main(final String args[]) throws IOException { - final String tstname = TestURIQueryProps.class.getName(); - org.junit.runner.JUnitCore.main(tstname); - } -} diff --git a/src/junit/com/jogamp/common/net/TestUriQueryProps.java b/src/junit/com/jogamp/common/net/TestUriQueryProps.java new file mode 100644 index 0000000..471cae2 --- /dev/null +++ b/src/junit/com/jogamp/common/net/TestUriQueryProps.java @@ -0,0 +1,49 @@ +package com.jogamp.common.net; + +import static com.jogamp.common.net.URIDumpUtil.showUri; + +import java.io.IOException; +import java.net.URISyntaxException; + +import org.junit.Assert; +import org.junit.Test; + +import com.jogamp.junit.util.JunitTracer; + +import org.junit.FixMethodOrder; +import org.junit.runners.MethodSorters; + +@FixMethodOrder(MethodSorters.NAME_ASCENDING) +public class TestUriQueryProps extends JunitTracer { + + @Test + public void test() throws IOException, URISyntaxException { + final String SCHEME = "camera"; + final String HOST = "somewhere"; + final String PATH = "0"; + final String[] args = new String[] { + SCHEME+"://"+HOST+"/"+PATH, + SCHEME+"://"+HOST+"/"+PATH+"?p1=1", + }; + for(int i=0; i -> "+uri1+" -> NULL"); + } else { + final Uri uri1T = data.appendQuery(uri0); + showUri(uri1T); + Assert.assertEquals(uri1, uri1T); + } + } + } + public static void main(final String args[]) throws IOException { + final String tstname = TestUriQueryProps.class.getName(); + org.junit.runner.JUnitCore.main(tstname); + } +} -- cgit v1.2.3