Hi
When you want the unmocked implementation to be called use
mock.ExpectUnmockedSet("Start").Args(New ParameterCheckerEx(AddressOf MockStartPropertySet))
What I meant is if you have code like this:
myClass.Start = otherClass.Method();
If you want to set myClass.Start to a specific value
You can do this:
Mock mock = MockManager.Mock("OtherClass");
DateTime returnDateTime = new DateTime(...);
mock.ExpectAndReturn("Method", returnDateTime);
Hope it helps :)