Hello. I've a project in .NET Framework 3.5 and as i can see nUNIT does not support it yet. What unit testing framework would you recommend for my needs?
|
2
|
|||||||
|
|
|
I've been trying out Gallio and it seems to work nicely. It plays nice with ReSharper's unit test runner, too. [edit] Just thought I'd mention that Gallio is the next evolutionary step from MbUnit, so it's not an entirely new thing. |
||
|
|
|
|
NUnit works perfectly well in .NET 3.5 - I've been using it (with ReSharper running the tests) since the betas of VS2008. |
||||||||||
|
|
|
As Jon said NUnit works fine with 3.5. There are a few things you need to keep in mind:
|
||
|
|
|
|
Some other unit testing tools for .NET 3.5 would be:
|
||
|
|
|
I get the same null reference error, brand-new 3.5 project with a simple Assert.IsTrue(true)....when I try to add the assembly to my NUnit project in guirunner I get: System.NullReferenceException... at NUnit.Util.TestLoader.ReloadTest(RuntimeFramework framework) |
||
|
|
|
|
Personally, I use MSTest since it is built into Visual Studio. It just makes it easy since you don't have to install anything in order to use it. |
||
|
|
|
|
I ran into this issue as well, and was able to work around it, in NUnit 2.5. In the NUnit GUI, turn on Visual Studio support under Tools > Settings... Now choose File > Open Project... Change the file filter from "Projects & Assemblies" to "Solutions", and load your solution file. You should be able to run all of your tests. Now choose File > Save As... and save the current setup as an NUnit project. You can now go into Project > Edit... and remove non-test assemblies or make any other changes you need. |
||
|
