vote up 0 vote down star

Hi,

I'm running the NUnit tests and everything is fine as long as the required dlls are in the same directory as tests. Otherwise I get the error "Could not load file or assembly". NUnit console doesn't seem to have any switch to include default path, nor it uses system PATH variable while looking for assemblies.

The question is how to reference binaries that are in a directory other then tests itself. I don want to avoid mixing test and shipping binaries within a directory. Sure, I could copy everything/remove test dlls, but it feels hacky.

flag

22% accept rate
Could you provide more details? Are these managed or unmanaged assemblies that are missing? Do you load them dynamically? – Grzenio Feb 5 at 11:08
Assemblies are managed, but I don't think it makes a difference. To put it simply, I have a tests.dll that tests code.dll. Now, when I run nunit-console, code.dll must be in the same directory as tests.dll. I would like to have it somewhere else and provide NUnit pat to it. – ya23 Feb 5 at 13:02

2 Answers

vote up 0 vote down

Write tests in a seperate project which references all the other projects.

Are you using Visual Studio .Net? Then you can choose to not include this project when you make a release build.

Test code should never reach production.

link|flag
Tests are in a separate project. The problem is that we build quite a lot of binaries and want to avoid unnecessary copying, so we redirect output from all projects to one dir, say /output. Then I would like to have tests in /tests and reference binaries in /output instead of making a copy of them. – ya23 Feb 5 at 12:59
vote up 0 vote down

On the machine in question, create an environment variable "DEVPATH" and set the value to the path for your assemblies. Then, within nunit.exe.config, add the following within the \configuration\runtime\ section:

<developmentMode developerInstallation="true" />

link|flag

Your Answer

Get an OpenID
or

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