Where did the auto-generated test client go in ASP.NET Web API? (part of MVC 4 beta) In the WCF WebAPI it was in the global.asax:
var config = new HttpConfiguration() { EnableTestClient = true, EnableHelpPage=true };
RouteTable.Routes.MapServiceRoute<MyService>("api/path", config);