After reading about MVC and Test Driven Development for quite a bit, I am just getting started on converting my webforms app to MVC. I am using this book as one of the references to learn TDD in ASP.NET MVC.
A Unit Test from that book is as below:
[TestMethod()]
public void Register_Can_Get_To_View()
{
var target = new AccountController();
var results = target.Register();
Assert.IsNotNull(results);
Assert.IsInstanceOfType(results, typeof(ViewResult));
Assert.AreEqual("Register", target.ViewData["Title"]);
}
I am also having a look at the nerddinner source code from codeplex and there a similar Unit Test is written as follows
[TestMethod]
public void Index()
{
// Arrange
HomeController controller = new HomeController();
// Act
ViewResult result = controller.Index() as ViewResult;
// Assert
Assert.IsNotNull(result);
}
In the first case, the author is comparing the type of results with ViewResult. However in the second case, the result is being casted as a ViewResult and that is not being tested.
Which is better and do I need to really test in detail as shown in the first case?