0
votes
Unit Testing Html Helpers for ASP.NET MVC
Craig Stuntz's Weblog
– Html helpers for ASP.NET MVC are static extension methods, which frequently reference the ViewContext and HttpContext. Combined, this can make unit testing a bit tricky. Let’s write a new Html helper using a test-first methodology. Let’s start with a prototype function: public static MvcHtmlString MyTable(this HtmlHelper helper, MyModel model, IDictionary<string, object> htmlAttributes) { return MvcHtmlString.Empty; } I’ve added just enough code here to get the prototype to compile. Now let’s write some unit tests. First we ...
Statistics
|
Visits by Source |
User Actions |




