vote up 0 vote down star

I have an existing Visual Studio solution with a handful of unit tests that throw one of two exceptions when executed using the Visual Studio test runner:

  • System.IO.FileNotFoundException
  • System.TypeInitializationException (where the inner exception is System.IO.FileNotFoundException)

In both cases, the error message includes content like the following:

looked for it at C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE[assemblyname].config

The config files aren't in there of course. They're located in the ...\bin\Debug\TestResults[user][workspace][timestamp]\Out folder. Is it possible to configure where the Visual Studio test runner looks for configuration files of supporting assemblies? If so, what do I need to change?

flag

1 Answer

vote up 0 vote down

Please see if this (on my blog) offers you a solution. It highlights why the test runner is looking in this directory and how I got round it.

(basically fooling it to look else where)

link|flag

Your Answer

Get an OpenID
or

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