And now I have seen it work, so I want to document it. Here's what I did:
- In VS 2013, New Project -> Web, ASP.NET Web Application
- Select WebAPI. Check "Add unit tests".
- Add the following unit test:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TestMethod] | |
public void RouteToGetUser() | |
{ | |
var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:4567/api/users/me"); | |
var config = new HttpConfiguration(); | |
WebApiConfig.Register(config); | |
config.EnsureInitialized(); | |
var result = config.Routes.GetRouteData(request); | |
Assert.AreEqual("api/{controller}/{id}", result.Route.RouteTemplate); | |
} |
And here's a Git repository with the complete working solution.
(Thanks to this blog post for unblocking me.)