I am just getting started here and would appreciate some help.
I created a MVC 4 Web API project (VS 2012) and a MSTest project in a solution.
I wrote a test method in MSTest and use the WebClient class to call into the Web API project with a URL like:
http://localhost:59466/api/values
I was hoping this would cause the Web API project to run and call the sample Values controller that is put in as a default.
When I run the tests, I get a test error "Unable to connect to server".
So how do I get the Web API app running so my MSTest project can call in to it?