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!