@Test public void
setsResponseCookies() throws IOException {
server.run(new Application() {
public void handle(Request request, Response response) throws Exception {
Cookie cookie = new Cookie("cookie", "value");
cookie.httpOnly(true);
cookie.maxAge(1800);
response.add(cookie);
}
});