Could somebody show me how you would go about creating a mock HTML Helper with Moq?
This article has a link to an article claiming to describe this, but following the li
What you can do is this:
HtmlHelper helper = null; helper.YourHelperMethod();
No need to mock anything. Works brilliant for me.