I want to check defined routes of my ASP.NET MVC applicaiton. How can I see that all URLs, acceptable verbs, and corresponding action methods are same as what I think?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
One thing you can checkout is glimpse. It can show you how the routing engine chooses your route for a given URL. If you want to assert that the routing is set up according to your expectations given your URL schema, you can write unit tests for your routes. Reply to comments How do you declaratively implement routes in MVC? I always thought they had to compile from C#, but maybe you are using some lib I have never heard of. Also, you can assert that a given (set of) URL(s), which you do not intend to be routed, is (are) not routed. |
|||||||
|