*/
@Test
public void testCookiesManyGiven() throws IOException {
final HttpPost post = new HttpPost(uri("/context/httpheaders/cookies"));
post.addHeader("Cookie", "foo=bar");
post.addHeader("Cookie", "foo2=bar2");
final HttpResponse response = client.execute(post);
assertEquals(response.getStatusLine().getStatusCode(), 200);
String responseBody = asString(response);
assertEquals("cookies:foo=bar:foo2=bar2:", responseBody);