summaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/net/TestURIQueryProps.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-09-08 13:49:45 +0200
committerSven Gothel <[email protected]>2014-09-08 13:49:45 +0200
commit6a466e3f1e92a1e831ea61d1bb72c32f56b2a28d (patch)
tree35c8509454e940a1d751fa6121e51e510005445d /src/junit/com/jogamp/common/net/TestURIQueryProps.java
parent3e50f103fa49b40f86966877084e0282a8d97ff8 (diff)
Bug 1063: Further Uri completion - As a result of JOGL Uri adoption
Diffstat (limited to 'src/junit/com/jogamp/common/net/TestURIQueryProps.java')
-rw-r--r--src/junit/com/jogamp/common/net/TestURIQueryProps.java50
1 files changed, 0 insertions, 50 deletions
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<args.length-1; i+=2) {
- final String uri_s0 = args[i];
- final String uri_s1 = args[i+1];
- final URI uri0 = new URI(uri_s0);
- final URI uri1 = new URI(uri_s1);
- showURI(uri0);
- showURI(uri1);
- final URIQueryProps data = URIQueryProps.create(uri1, ';');
- if(null == data) {
- System.err.println("Error: NULL: <"+uri_s1+"> -> "+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);
- }
-}