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

I am writing NUnit tests for an application that stores reference data XMLs in

My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData

The problem is that when the NUnit executable runs against this application, that value becomes NUnit's Application Data folder, and the resources are not located:

UnitTesting.ProcessorTest.NameOfTest:
SetUp : System.IO.FileNotFoundException : Could not find file 
'C:\ProgramData\NUnit.org\NUnit\2.6.2.12296\CrossReference.xml'.

I need to refactor the existing application so that it finds AllUsersApplicationData explicitly for the Assembly being tested, not relative to 'My'.

I tried changing the NUnit Assembly Isolation, Assembly Reload, and Shadow Copy settings to all possible combinations, but those don't seem to affect this issue. Any help is appreciated!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.