Skip to content

Instantly share code, notes, and snippets.

@tonyjoanes
Created October 10, 2014 15:15
Show Gist options
  • Save tonyjoanes/5af399e23d10e1d2c942 to your computer and use it in GitHub Desktop.
Save tonyjoanes/5af399e23d10e1d2c942 to your computer and use it in GitHub Desktop.
MVC Route testing
[TestFixtureSetUp]
public void TestSetup()
{
var routes = RouteTable.Routes;
routes.Clear();
routes.MapRoute(
"Default",
"{controller}",
new {controller = "Recipe", action = "Healthy", id = ""}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment