up vote 3 down vote favorite
share [g+] share [fb]

I was curious if anyone had any problems creating unit tests around using the ResourceManager. I am using Visual Studio test edition and it appears that the satellite assemblies don't get loaded during the test. When I try to get a resource for another culture, the test always fails and the resource manager always falls back to the default culture. The exact same code runs fine within the normal application.

link|improve this question

60% accept rate
feedback

2 Answers

up vote 0 down vote accepted

I've had similar problems in the past with satellite assemblies. Try adding the satellite assemblies to the unit projects dependecies. In Visual Studio Test -- Edit Test Run configuration. Select Deployment and add the files here.

On executing all applications, dlls, etc are copied to a special directory. Strong named dll's may be ignored as these are expected to be in the GAC.

link|improve this answer
feedback

That got me going in the right direction. Adding the files to the deployment config didn't help, but disabling deployment did work.

For future reference, Visit this blog post and scroll down to the section "Managing Test Runs" for details of creating a test configuration and how to disable the deployment

link|improve this answer
This has now helped me on the same problem two separate occasions. – OffBySome Apr 22 '10 at 22:42
feedback

Your Answer

 
or
required, but never shown

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