vote up 0 vote down star

I have 13 separate but related architecture assemblies, and 13 separate NUnit test assemblies, each one containing all the test fixtures for its matching architecture assembly. I am using NUnit 2.5.2 (latest version currently).

I can run each test assembly separately in the NUnit GUI and all the tests pass. However, when I come to combine them into a single NUnit project file, NUnit insists on applying a single config file to the whole test run. This won't work because each test assembly requires different config. I can't merge them into one "uber-config" file because some of the sections are mutually exclusive. I have tried running each assembly in the project in separate AppDomains, and also separate processes, but in both cases it fails to use the DLL-specific config file, so all the tests crash and burn.

I have done a Google search but so far I have not found any indication that NUnit supports this scenario. Am I right, or have I missed something?

I have tried my hardest to re-architecture the tests so that they could share the same config file, but I've had to admit defeat on that front.

flag

1 Answer

vote up 1 vote down check

In the past I've done this with a batch file running each assembly through the nunit console independently. At one point I had something that merged the xml output together. It might be in the CruiseControl.Net code.

I haven't worked on the NUnit project for a while. I only have the older code in my head. But the issue is that you get one config per AppDomain and NUnit loads all the test assemblies into one AppDomain.

You might want to try alternate runners such as Resharper or TestDriven.net

link|flag
Thanks Mike. I looked at TestDriven.NET, which led me onto MBUnit, which led me onto Gallio. I tried creating a Gallio project from the NUnit test assemblies, and all the tests executed successfully in that (once I had removed all my Setup Fixtures which Gallio refuses to run). I will probably swap between the NUnit and Gallio GUIs now, because the NUnit GUI has much better error reports. – Christian Hayter Aug 26 at 8:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.