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?