@Test
public void startsOnPortSpecifiedOnCommandLine() {
startRunner("--port", "8086");
WireMock client = new WireMock("localhost", 8086);
client.verifyThat(0, getRequestedFor(urlEqualTo("/bling/blang/blong"))); //Would throw an exception if couldn't connect
}
@Test
public void proxiesToHostSpecifiedOnCommandLine() {
WireMock otherServerClient = start8084ServerAndCreateClient();