I\'m using ASP.Net MVC 4 RC\'s ApiController and I\'m trying to unit test a GET method.
This method uses the CreateResponse method that\'s on t
CreateResponse
This was solved by specifying an empty configuration:
request.Properties.Add(HttpPropertyKeys.HttpConfigurationKey, new HttpConfiguration());
I got the answer to that from here
ASP.NET WebApi unit testing with Request.CreateResponse