// Arrange Act Assert

Jag Reehal on Agile Development, ASP.NET MVC, Silverlight and all manner of good stuff


Did you know NUnit 2.5 is out?

Posted on | June 23, 2009 | No Comments

Go to http://www.nunit.org/index.php?p=download to get it!

It has awesome new features such as data driven tests! See http://nunit.com/blogs/?p=66 for more information. That means I can now do the things only possible before in other frameworks such as MbUnit and xUnit.

Just be aware if you write your asserts like this

Assert.That(1, Is.EqualTo(1));

‘Is’ is now a member of ‘NUnit.Framework’ and not ‘NUnit.Framework.SyntaxHelpers’ so you will have to remove the using statement that looks like this

using NUnit.Framework.SyntaxHelpers;

Comments

Leave a Reply