I found several questions on StackOverflow wondering what libraries or what best practices. Are all very usable for noobs, help me a lot.
What libs exist to test .Net MVC Routes?
I found Fluent route tester in MvcContrib where i got some problems to test with PostMethods.
Exist another librarys like MVCContrib to test Routes?
Update:
I say Test a .Net MVC Routes:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Usuario", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
Librarys to test if my routes are triggered correct if I call: "~/controller/action".