Nothing I do works. I have made the static method public, I removed the abstract keyword from the class that contains said method and I still can't get it to work. At least now I am getting an exception:
Test method McKesson.ECSG.UT.BO.Shared.XReadOnlyUnitTest.TestStaticAdmDiaReadOnlyGetAdmDiaReadOnly threw exception: System.TypeLoadException: Method 'ReturnRecursiveFake' in type 'TypeMock.ArrangeActAssert.Recorder`1' from assembly 'Typemock.ArrangeActAssert, Version=5.3.0.0, Culture=neutral, PublicKeyToken=3dae460033b8d8e2' does not have an implementation..
Step 1: I want to mock a static call.
Step2: I want to mock a protected static call.
Step 3: I want to mock a static call on an abstract class.
Step 4: I want to mock a protected static call on an abstract class.
I can't seem to do any of these things using any of the 3 apis anymore. Please help! :)
-T