Hi Craig
Thanks for sending the logs.
:arrow: From what we see, the problem is not with TypeMock because your tests fail even when TypeMock is not running.
The actual problem is that the log4net dll could not be loaded.
----------------------------------
[errormessage] = Unable to create instance of class JDA.PRO.Framework.UnitTest.Service.PROServiceFactoryUnitTest. Error: System.TypeInitializationException: The type initializer for 'JDA.Inf.Sys.JDALoggingService' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly 'log4net, Version=1.2.0.30714, Culture=neutral, PublicKeyToken=9325eb26cf050f55' or one of its dependencies.
----------------------------------
:idea: To solve do one the following:
1. Make sure that the log4net dll is copied
(in Visual Studio Solution Explorer choose the log4net reference, Right Click -> Properties and make sure that Copy Local is True)
2. Change the Test Run Configuration to not copy the dll's to a new location
(in Visual Studio open you .testrunconfig file, Select Code Coverage, and make sure that Instrument Assemblies in Place is checked)