@Test(groups = { "standalone", "default_provider" })
public void multipleSSLWithoutCacheTest() throws Exception {
AsyncHttpClient c = getAsyncHttpClient(new Builder().setSSLContext(createSSLContext(new AtomicBoolean(true))).setAllowPoolingSslConnections(false).build());
try {
String body = "hello there";
c.preparePost(getTargetUrl()).setBody(body).setHeader("Content-Type", "text/html").execute();
c.preparePost(getTargetUrl()).setBody(body).setHeader("Content-Type", "text/html").execute();
Response response = c.preparePost(getTargetUrl()).setBody(body).setHeader("Content-Type", "text/html").execute().get();