I am trying to create unit tests for my ASP.NET MVC 5.1 application.
I want to check outgoing url using UrlHelper.Action () method. I can do this with ASP.NET MVC 4, but I cannot with ASP.NET MVC 5.1.
When calling the Action () method, an exception is thrown:
An unhandled exception of type "System.NotImplementedException" occurred in System.Web.dll
Additional information: The method or operation is not implemented.
Please help me in the decision! Thanks
source
share