@Test(groups = { "standalone", "default_provider", "async" })
public void asyncDoPostInputStreamTest() throws Exception {
AsyncHttpClient client = getAsyncHttpClient(null);
try {
final CountDownLatch l = new CountDownLatch(1);
FluentCaseInsensitiveStringsMap h = new FluentCaseInsensitiveStringsMap();
h.add("Content-Type", "application/x-www-form-urlencoded");
StringBuilder sb = new StringBuilder();
for (int i = 0; i < 5; i++) {
sb.append("param_").append(i).append("=value_").append(i).append("&");
}
sb.setLength(sb.length() - 1);