I have a mocked object that is passed as a constructor argument to another object.
How can I test that a mocked object\'s property has been called? This is code I am
newContact.Expect( c => c.ForeNames ).Return( ... ).Repeat.Any()