assertEquals("http://myserver/dm/atom/library/%5B@Pgistest/@RMain.nsf%5D/feed", 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();