KeyManager[] keyManagers = helper.getKeyMgrs((VertxInternal) vertx);
assertTrue(keyManagers.length > 0);
}
private void testTrustStore(TrustStoreOptions options) throws Exception {
KeyStoreHelper helper = KeyStoreHelper.create((VertxInternal) vertx, options);
TrustManager[] keyManagers = helper.getTrustMgrs((VertxInternal) vertx);
assertTrue(keyManagers.length > 0);
}