Representation echoRep = dispatcher.handle(
new Request(Method.GET, echoURI)).getEntity();
assertEquals("expected echo of uri-remainder", msg, echoRep.getText());
final String objURI = localBase + "/object";
final Representation objRep = dispatcher.handle(
new Request(Method.GET, objURI)).getEntity();
assertSame("expected specific test-object", JUST_SOME_OBJ,
((ObjectRepresentation<?>) objRep).getObject());
final String nullURI = localBase + "/null";