}
@Test
public void testPOSTWorksWithParametersOnContentType() throws Exception {
content = "<html><body><div class=\"vcard fn\">Joe</div></body></html>";
HttpTester response = doPostRequest(
"/",
"format=nt&uri=http://foo.com",
"application/x-www-form-urlencoded;charset=UTF-8"
);
Assert.assertEquals(200, response.getStatus());
Assert.assertEquals("http://foo.com", requestedURI);
String res = response.getContent();
assertContains(
"<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#VCard>",
res
);
}