Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the NUnit GUI version, and it started to get upset at me when I have a test project loaded in there trying to test things. If I make a change in Visual Studio, and then try to rebuild the solution, it throws the error "Unable to copy file obj\Debug\foo.dll to bin\Debug\foo.dll. The process cannot access the file bin\Debug\foo.dll because it is being used by another process."

This is the DLL I have loaded into the GUI, of course. It used to be OK, and just refresh the project reference after a build, but now it seems to be blocking it. How can I get back to that behavior?

I've tried enabling/disabling the shadow copy setting by the way, with the same results either way.

VS2008 SP1 and NUnit 2.4.8, if that matters.

share|improve this question

6 Answers

up vote 31 down vote accepted

Figured it out: the "Volume Shadow Copy" service was shut off for some reason. Turned it back on, and everything's back to normal.

share|improve this answer
1  
Thanks for posting the fix! – Tim Stewart Jun 2 '09 at 5:29
Had the same problem, fix worked wonderfully! – John Rasch Jun 20 '10 at 22:37
Worked for me as well - but can anybody explain why? On the face of it, the Volume Shadow Copy service should have nothing to do with the VS Build process. – Samuel Jack Jun 21 '10 at 16:52
I wonder if the NUnit runner is using VSS to make a snapshot of the DLL. – kgriffs Jul 21 '10 at 18:44
The strange thing is that the VSS service is supposed to start on-demand when a snapshot is requested. – kgriffs Jul 21 '10 at 19:26
show 7 more comments

I just wanted to add that moving the Nunit project file to the solution location solved my issue. I did not have to change any shadow copying setting in nunit or to enable shadow copying service.

See Stack Overflow - nunit locking dll

share|improve this answer
1  
BTW it's not necessary to actually have them in the same directory. Updating the Project Base in NUnit GUI project settings to point to the solution directory does the trick too. No need for Volume Shadow Copy – Kos Jan 22 '12 at 14:40

I had the same problem as mentioned in the Question. I solved it on my machine by the following:

  1. Within Visual Studio > Solution Explorer > select the dll that is causing the problem > right click > select properties. After this action the File properties of the dll should now be visible.
  2. Within the file properties view of the dll; set the Copy To Output Directory to Copy if newer.

If you have the Copy to Output Directory as Copy always you will get the compile error mentioned in the question. If you make the change mentioned above it should go away and your dll will still be copied.

share|improve this answer
Good catch, wish I could mark two as answered. – Chris Jul 9 '09 at 13:36
1  
Hmm, in my project the bin/obj directories are not included in the project itself, so the "Copy to output Directory" option is not actually available. VSS doesn't seem to help either, are there other options? – Shagglez Mar 31 '11 at 9:52

I had the same problem :

Unable to copy file obj\Debug\foo.dll to bin\Debug\foo.dll. 
The process cannot access the file bin\Debug\foo.dll because it is being used by another process.

The cause in my case seemed to be that I used the same namespace in two assemblies:

  1. MyNUnitTestLibrary 'wrapped' the test classes in "namespace bank {...}"
  2. 'NUnit Quick Start' also had everything inside "namespace bank {...}"

Changing one of the namespace names fixed the problem. I have made several changes to both assemblies and re-compiled without the error

Note that both assemblies contain tests,as I a play with NUnit.

share|improve this answer

I had this problem too, but I'm strugling to reproduce it today. The forums seem to suggest that it is due to your code not giving back resources that it was using. This rings a bell as I would have been testing an Xml reader when I had this issue.

Here's a link I found on asp.net

share|improve this answer
Interesting. I have a test assembly (the one it's complaining about) and a separate assembly that it's supposed to be testing. Would the resource issue be in the test assembly? Or possibly something the test assembly is accessing in the main assembly isn't letting go of a resource. Hmm... – Chris Jun 1 '09 at 15:38
Don't want to send you off on a wild goose chase, but I would have thought that the offending code will be in the assembly you are testing rather than the test assembly. Look for things that use System.IO especially, they seem to be quite tardy. – Mark Dickinson Jun 1 '09 at 15:45
I hear ya. What's interesting is that I can load the NUnit project from scratch, and without running a single test (meaning it hasn't loaded my code yet...I think), it still blocks the IDE from compilation. I'll still check some things out though, thanks! – Chris Jun 1 '09 at 15:48
No worries, good luck. – Mark Dickinson Jun 1 '09 at 15:54

I had this problem, and after a lot of reading around and experimentation, I realized the culprit was not actually anything in NUnit or my code. It was another library I was using, FakeItEasy, a mock object framework, which was failing to properly release all it's resources.

If you're using FakeItEasy with NUnit and encounter this problem, consider switching to another mock object framework. If you're not using FakeItEasy, or if removing it from your project doesn't fix this, take an inventory of all the 3rd party libraries you are utilizing from the test code, and consider if any of them might be doing something similar.

Alternately, pester the creator of NUnit to explicitly release any resources held by any of the test assemblies it loads, or if you're much more proactive than I, take advantage of the fact that it's an open source project and contribute a solution that does this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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