public void testFormRepresentation() {
final Form fp = new Form();
fp.param("Email", "johndoe@gmail.com");
fp.param("Passwd", "north 23AZ");
fp.param("service", "cl");
fp.param("source", "Gulp-CalGul-1.05");
final WebTarget target = target("FormResource");
final Form response = target.request().post(Entity.entity(fp, MediaType.APPLICATION_FORM_URLENCODED_TYPE), Form.class);
assertEquals(fp.asMap().size(), response.asMap().size());