chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
Welcome to Typemock Community! Here you can ask and receive answers from other community members. If you liked or disliked an answer or thread: react with an up- or downvote.
0 votes
Today I had to restart Visual Studio. Afterwards no matter what I would get this error when running tests - everything would compile just fine:

Unit Test Adapter threw exception: Could not load file or assembly 'Typemock.ArrangeActAssert, Version=5.2.3.0, Culture=neutral, PublicKeyToken=3dae460033b8d8e2' or one of its dependencies. The system cannot find the file specified..


So I ended up GAC'ing the 4 Typemock assemblies that are strongly named (which this is one of them) and this resolved the problem, but I've never had to do that before.

Has anyone else seen this behavoir?
asked by boo (21.8k points)

1 Answer

0 votes
Hi Brian,

Can you check if Typemock.ArrangeActAssert.dll is copied to the output directory of your test assembly?
If it's not make sure that in the solution explorer the "Copy Local" property of the Typemock.ArrangeActAssert assembly is true.
Than rebuild the project so Typemock.ArrangeActAssert will be copied to the output directory.
answered by ohad (35.4k points)
...