vote up 4 vote down star
1

I have just branched our Common Business Layer projects from the main to a new branch, and included them in a new solution. Everything compiles but when I run the unit tests I get the following error for every single test...

Unit Test Adapter threw exception: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

The strange thing is they run fine when I debug them. The error only happens when I run them without the debugger attached.

Failing an outright fix, can anyone tell me how to "Retrieve the LoaderExceptions property"?

flag

5 Answers

vote up 3 vote down check

Try cleaning the solution and trying again.

Also try clicking on the link that appears in yellow bar of the Test Results window, this sometimes gives more information about why tests cannot be run.

link|flag
Cleaning the project fixed the issue for me. Thx!! – irperez May 4 at 22:58
vote up 0 vote down

I've also seen this, sometimes when the simple cleanup doesn't help, I switch the configuration to Release, clean it up, then back to Debug, clean it up and rebuild (

link|flag
vote up 1 vote down

Thanks Si Keep. That helped. I also had to resign the target assembly. I Don't know why. It's a mystery (like some of the answers posted for this question).

link|flag
vote up 0 vote down

Nothing to see here, move along....

heisenbug

link|flag
vote up 1 vote down

My psychic debugger says that you're using 64-bit, and your test adapter is set to use 64-bit .NET framework, and devenv is set to 32-bit. Use corflags to force your test adaptor to run using the 32-bit CLR.

NOTE: Psychic debugger is not always 100% accurate, due to its use of psychic powers :)

link|flag
Nice! Thanks sooo much. That worked a treat. – Andy McCluggage Dec 11 '08 at 14:28

Your Answer

Get an OpenID
or

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