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); } }