i still confused let me describe better what i want to acheive
mock.ExpectCall("method1");
mock.ExpectGetAlways("propName",value);
i want to verify that method1 is called (and mock it) but i do not want to rewrite the 2nd expectation. imagine having the above code in the setup method of a fixture and want to verify the method1 inside SetUp but to keep the 2nd expectation for using it by the rest of the test cases.
i now using a technic like the following
mock.ExpectCall("method1");
mock.ExpectGetAlways("propName",value);
....
....
do stuff
mock.Verify()
mock.ExpectGetAlways("propName",value);
but that makes my expectations spread around the code and being doublicate