AnthonySteele / MvcRouteTester

A library for unit testing ASP MVC route tables for both Web and API Routes
Apache License 2.0
105 stars 43 forks source link

fix for async actions that accept CancellationToken as parameter #68

Closed usarskyy closed 9 years ago

usarskyy commented 9 years ago

You can have CancellationToken as one of the parameters in ASP.NET MVC/WebAPI action. Then this parameter will be automatically provided by the framework.

Current version of MvcRouteTester tries to find a match to this parameter among provided values which is wrong. My pull request fixes this issue.