MyTested.AspNetCore.Mvc
MyTested.AspNetCore.Mvc copied to clipboard
Allow route testing without a Startup class
Example test:
MyRouting
.Configuration(routes => routes.MapControllerRoutes())
.ShouldMap("/My/Action/1")
.To<MyController>(c => c.Action(1));