public void ServerWithHostPathDash_AccessHostRootDash_NoError() { var host = $"http://localhost:{NextFreeTcpPort()}"; this.GivenRunningServerWithWebApi(host + "/path/"); var client = new JobbrClient(host + "/path"); Assert.IsTrue(client.IsAvailable()); }
public void ServerWithRootedHostPlain_AccessHostRootPlain_NoError() { var host = $"http://localhost:{NextFreeTcpPort()}"; this.GivenRunningServerWithWebApi(host); var client = new JobbrClient(host); Assert.IsTrue(client.IsAvailable()); }