Browse by Tags

All Tags » unit test (RSS)

The String or the Cat: A New .NET Framework Library

For years applications have been built that accept user input. Most user input starts out as a string. Strings are a universal representation of arbitrary data coming into a computer. However, most data does not remain as a string for very long. User...
Posted by Eilon | 48 comment(s)
Filed under: , ,

MVC: Unit testing controller actions that use TempData

Part of the "big deal" about ASP.NET MVC , and of course MVC in general, is that the code you write is more easily unit tested as compared to traditional ASP.NET WebForms. However, if you've used ASP.NET MVC and tried to write a unit test for...
Posted by Eilon | 11 comment(s)
Filed under: , , ,

MVC: I'll need a little bit more context on that

ScottGu recently announced the plans for the next public preview of the ASP.NET MVC framework. For those who don't feel like clicking on links to other peoples' blog posts Scott's blog says it's being released at MIX08 , which is only a couple of weeks...
Posted by Eilon | 5 comment(s)
Filed under: , , ,

ASP.NET MVC Design Philosophy

This week the first preview of the ASP.NET MVC framework was released to the web as part of the ASP.NET 3.5 Extensions CTP Preview . It's been a few months since we started coding and as the lead developer on the project I'd like to share my thoughts...
Posted by Eilon | 39 comment(s)
Filed under: , , ,

Testing your ASP.NET control (part 1 of hopefully many): ViewState

A typical ASP.NET server control will store at least some of its properties in ViewState. For example, the Label control saves the value of its Text property in ViewState so that on following postbacks the value does not need to be explicitly set again...
Posted by Eilon | 3 comment(s)
Filed under: , ,
More Posts