Darrell Norton's Blog [MVP]

Sponsors

The Lounge

News

  • Darrell Norton pic

    MVP logo

    View Darrell Norton's profile on LinkedIn

    Currently Reading:

    weewar.com

Advertisement

Images in this post missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at imagehelp@codebetter.com
NUnit 2.2.3 is out - now works with .NET 2.0

Charlie Poole announced the availability of NUnit 2.2.3:

NUnit 2.2.3 is now out. You can get it at our SourceForge site. The release notes are available here.

So far, only the .msi file is available. It’s built with VS2003 but, as always, will run on .Net 2.0 - including the RTM. The zipped binaries and source will follow in the next few days, depending on how much connectivity I have while I’m travelling.

A version built against .NET 2.0 is in the cards, but we’re still looking at alternative ways to organize the releases.


Posted 11-15-2005 5:01 PM by Darrell Norton
Filed under:

[Advertisement]

Comments

albert b wrote re: NUnit 2.2.3 is out - now works with .NET 2.0
on 11-18-2005 1:35 AM
I've used NUnit for the last three years, but when I recently opened/imported an existing .Net 1.1 project (built in VS 2003) into VS 2005, I was never quite able to get my NUnit based test project to run under my existing version of NUnit (2.2). The NUnit gui choked and wrote out an error message about my .dll having a 'bad format.'

So I gave up.

Instead, I ported my existing unit test classes over into the new testing framework built right into VS 2005 (you have to replace method attributes like [SetUp] with attributes like [TestInitalizer()] ... ) The code you write to run in VS 2005's testing host (VSTestHost.exe) turns out to be *remarkably similar* to the code which ran in NUnit. ;-)

So far, I'm pleased with the results, and don't think I'll be going back to NUnit. (maybe i'll change my mind next week, one never knows).

In addition, I find the builtin "Web Test" macro recorder in VS 2005 is easy to use, though I'm concerned about my ability to tweak it and really bend it to my will. I'm not yet familiar enough with it to be sure, but I'm not sure it will prove to be as flexible as the NUnitASP approach. On the other hand. VS 2005's Web Tests are certainly REALLY easy and quick to create.

So, er, is VS 2005 the beginning of the end for NUnit?