Skip to content

NUnit.org
Syndicate content
NUnit, TDD and the role of tests in agile development
Updated: 7 hours 12 min ago

NUnitLite 0.7 Release

Sat, 05/12/2012 - 06:13

The NUnitLite project has been somewhat dormant for a while, with the last release, 0.6, having come out in 2010. About a month ago, I learned from Sebastien Pouliot that MonoTouch is using NUnitLite as the basis for it’s unit tests, which motivated me to put on some finishing touches to a new release, NUnitLite 0.7.

This release puts NUnitLite on a somewhat equal footing with full NUnit, at least in terms of the supported syntax for writing tests. Most attributes and constraints are now supported, at least when running on a desktop operating system. When running under the compact framework, certain things are not available because the framework doesn’t support them. If you don’t need the gui or a features implemented above the framework, like running in a separate process, NUnitLite can pretty much do the job for many projects.

This release of NUnitLite is the first one to provide pre-built binaries. Separate builds are produced for .NET 4.0, 3.5, 2.0 and 1.1 and for compact framework versions 2.0 and 3.5. You can download them from our Launchpad project site or using NuGet

Categories: Open Source

NUnit Adapter for Visual Studio

Fri, 05/04/2012 - 05:59

Today, I’m releasing version 0.92 of the NUnit Adapter for Visual Studio and creating a new project under the NUnit umbrella to hold it’s source code, track bugs, etc.

In case you didn’t know, Visual Studio 11 has a unit test window, which supports running tests using any test framework for which an adapter has been installed. The NUnit adapter has been available on Visual Studio Gallery since the initial VS Developer preview. This release fixes some problems with running tests that target .NET 2.0/3.5 and with debugging through tests in the unit test window.

For a bit more info about how to install and use the adapter, see the docs

Here are some links to the NUnit Adapter

Categories: Open Source