public void relativeQuery()
throws Exception
{
WebURL parent = new WebURL("http://foo.com/abc/def/ghi.asmx?q=foo");
WebURL resolved = parent.resolve("?q=bar");
assertEquals(resolved.toASCIIString(),"http://foo.com/abc/def/ghi.asmx?q=bar");
}
@Test
public void queryEscaping()
throws Exception