WireMockServer wireMockServer = new WireMockServer(_wireMockConfig_().port(8089)); //No-args constructor will start on port 8089, no HTTPS
wireMockServer.start();
// Setup the WireMock mapping stub for the test
wireMockServer.stubFor(_post_("/carts")
.willReturn(_aResponse_()
.withStatus(201)
.withHeader("Content-Type", "application/json")
.withBodyFile("../resources/__files/get-users-200.json")));