It would be nice to be able to use method groups with Isolate.WhenCalled(). For example, if I change
Isolate.WhenCalled(() => filterTest.InitState()).CallOriginal();
to
Isolate.WhenCalled(filterTest.InitState).CallOriginal();
I get this error:
TypeMock.TypeMockException:
*** Cannot call Isolate.WhenCalled() with method group fake.InitState. Try using Isolate.WhenCalled( () => fake.InitState()) instead
Please consider this feature for a future release :)