private HttpClient httpClient;
private void startServerWithKeystore(String keystorePath) {
WireMockConfiguration config = wireMockConfig().httpsPort(HTTPS_PORT);
if (keystorePath != null) {
config.keystorePath(keystorePath);
}
wireMockServer = new WireMockServer(config);
wireMockServer.start();
WireMock.configure();