Exemplo n.º 1
0
 public void AfterTest(ITest test)
 {
     WebServers.KillHosts();
 }
Exemplo n.º 2
0
 public static RestClient ForIISExpress()
 {
     return(new RestClient(WebServers.EnsureHost(Host.IISExpress)));
 }
Exemplo n.º 3
0
 public static RestClient ForOwin()
 {
     return(new RestClient(WebServers.EnsureHost(Host.Owin)));
 }
Exemplo n.º 4
0
 public static RestClient ForHost(Host host)
 {
     return(new RestClient(WebServers.EnsureHost(host)));
 }