Question

In NUnit 2.4.7, nunit.framework.extensions.dll was included which made it possible to do RowTests.

When downloading the newest version (2.5.8) I can't find it. What happened to it?

Was it helpful?

Solution

Instead of using RowTest, you can use TestCase. A previous testing using RowTest would look like:

[RowTest]
[Row("foo", false)]
[Row("", true)]
public void Some_test(string value, bool expected)
{
  // test
}

And the same thing with TestCase looks like this:

[TestCase("foo", false)]
[TestCase("", true)]
public void Some_test(string value, bool expected)
{
  // test
}

OTHER TIPS

RowTest was an extension that was merged in temporarily, and was removed in 2.5 Alpha 2

Quote from the Release Notes for 2.4.8:

NUnit now includes the RowTest extension, written by Andreas Schlapsi, in it's extension assemblies. This extension allows you to write test methods that take arguments and to provide multiple sets of argument values using the RowAttribute. To use RowTest, your test must reference the nunit.framework.extensions assembly.

Note: Merging extensions into NUnit's own extension assembly is an experiment we are trying for this release. The approach may change in future releases.future releases.

Quote from the 2.5 alpha 2 Release Notes:

The RowTestExtension, which was merged into the nunit extension dlls in Alpha-1, is now provided as a separate addin. This is the general approach we plan to take with regard to any bundled addins, since it permits the creator of an addin to provide updates separately from the NUnit release.

You can now download the RowTest extension from here.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top