scheme,
user;
public UriTestCase(final RippleValue r, final ModelConnection mc)
throws Exception {
ModelConnectionHelper h = new ModelConnectionHelper(mc);
base = strVal(r, BASE, h, mc);
comment = strVal(r, COMMENT, h, mc);
frag = strVal(r, FRAG, h, mc);
label = strVal(r, LABEL, h, mc);
path = strVal(r, PATH, h, mc);
port = strVal(r, PORT, h, mc);
query = strVal(r, QUERY, h, mc);
reg = strVal(r, REG, h, mc);
scheme = strVal(r, SCHEME, h, mc);
user = strVal(r, USER, h, mc);
System.out.println("r = " + r);
type = TestType.find(
((URI) h.findSingleObject(r, TEST).toRDF(mc).sesameValue()).getLocalName());
System.out.println(" type = " + type);
}