"TEST", "test.domain", "/testdir");
checkEquality(entity);
}
{
// test ServletCookies
HTTPMessageEntity entity = new HTTPServletCookie(
"TEST", "test.domain", "/testdir");
checkEquality(entity);
}
{
// test WebRequestCookie
CookieImpl entity = new WebRequestCookie();
entity.setName("TEST");
entity.setMaxAge(1);
entity.setComment("comment");
entity.setValue("test");
checkEquality(entity);
}
{
// test WebRequestHeader
HeaderImpl entity = new WebRequestHeader();
entity.setName("TEST");
entity.setValue("test");
checkEquality(entity);
}
{
// test WebRequestParameter
RequestParameterImpl entity = new WebRequestParameter();
entity.setName("TEST");
entity.setValue("test");
checkEquality(entity);
}
}