System.out.println("+++++ Unrelated GET +++++");
// GET with different Token
Request asyncRequest = Request.newGet();
asyncRequest.setURI(uri);
asyncRequest.send();
response = asyncRequest.waitForResponse(time/2);
if (response!=null) {
success &= checkToken(asyncRequest.getToken(), response.getToken());
success &= hasObserve(response, true); // inverted
System.out.println("+++++ OK +++++");
} else {