assertEquals("foo://localhost:8080/com/ibm?name=myname#last", uriBuilder.build().toString());
}
public void testClone() {
UriBuilder builder1 = new UriBuilderImpl();
builder1.scheme("http").host("localhost").port(80);
builder1.segment("path1", "path2");
builder1.matrixParam("mat1", "{var1}", "v2");
builder1.queryParam("q1", "abc");
builder1.fragment("fragment");
UriBuilder builder2 = builder1.clone();