TestDriven.NET 2.7 on Orcas Express! I’m happy to report that
September 28, 2008 – 4:00 pmTestDriven.NET 2.7 on Orcas Express!
I’m happy to report that TestDriven.NET is working on Orcas Express! If you’d like to try out the new C# 3.0/VB 9.0 language features without installing the full Visual Studio Orcas Edition then now’s your chance. You should find this version works with Visual C#, VB and C++ Orcas Express CTP/.NET 3.5 Beta 1. Due to some changes Microsoft made to Orcas it works even more seamlessly than it does in Visual Studio 2005 Express!
NOTE: There is a chance this functionality will be disabled at 4 PM London time next Friday, 1 June 2007. Why find a technical solution to a problem when you have an army of lawyers?
TestDriven.Net 2.13: Support for NUnit 2.4.7
The latest release of TestDriven.Net is now compiled against NUnit 2.4.7. This version of NUnit includes Andreas Schlapsi’s popular RowTest extension. The RowTest attributes have been moved to the ‘nunit.framework.extensions’ assembly (which you can find here: \Program Files\TestDriven.NET 2.0\NUnit\2.4\nunit.core.extensions.dll).
Here is an example RowTest method that tests a prime number function:
The prime number function might look like this:
As you can see the intention of the test is very clear and there is no repetition. I’ve written more about parameterized unit tests here.
how to use web service
hai friend’s i want to add all the countries in the dropdownlist but by using the web service ,for the corresponding countries i want to provide the list of states in another dropdownlist ,and for the selected states i want to provoide the important cities in the states
Diffusion effect in javascript
Hi I have a image control in HTML. By using setTimeOut() I am changing the image in the image control but what I want is to give diffuse effect to the image while changing. Is that possible. Kindly advice Regards Karan
TestDriven.Net 2.11: Parameterized NUnit Tests
TestDriven.Net has always supported parameterized test methods when used with the MbUnit testing framework. When using MbUnit, it is common for a single test method to execute multiple tests with different parameter inputs. The most famous of these test types is the MbUnit RowTest.
Until now there has been little reason to add support for executing parameterized tests using NUnit (historically NUnit has only supported parameterless test methods). However Andreas Schlapsi has recently written an implementation of MbUnit’s RowTest using NUnit 2.4’s Addin extensibility mechanism.
I’ve updated TestDriven.Net 2.11 to better support NUnit add-ins and enable the targeting of RowTests and other parameterized test types. This version also includes a workaround for a log4net related issue that was causing a noticeable delay when launching the NUnit 2.4 GUI. You can find the release notes for TestDriven.Net 2.11 here.
To install the RowTest Extension for NUnit you will need to do the following:
- Download and install TestDriven.Net 2.11.
- Download the RowTest Extension for NUnit 2.4.5 (Binary).
- Create a directory called ‘addins’ in ‘%ProgramFiles%\TestDriven.NET 2.0\NUnit\2.4′.
- Copy the ‘NUnitExtension.RowTest.AddIn.dll’ file into the ‘addins’ directory (don’t put any non-assembly files there).
- Add a reference to ‘NUnitExtension.RowTest.dll’ from your NUnit test project.

You can then start writing and executing MbUnit style RowTests inside your NUnit projects! You can find Peli’s original RowTest example here.

To view your RowTests inside the NUnit GUI you will need to use ‘Test With > NUnit 2.4′. You will find this option on the ‘Solution Explorer’ project context menu.
Thanks to Wayne Brantley for letting me know about the RowTest Extension for NUnit.
You must be logged in to post a comment.