// make a new request to / with cookie should return again the same cookie
MultiMap headers = new CaseInsensitiveMultiMap();
headers.add("cookie", cookie);
yokeAssert.request("GET", "/", headers, new Handler<Response>() {
@Override
public void handle(Response resp) {
// the session should be the same, so no set-cookie
assertEquals(200, resp.getStatusCode());
String nocookie = resp.headers.get("set-cookie");