I am having trouble trying to create a test at which I would like to instruct Rhinos to return a value when it hits a method that I defined. Upon debugging the test, I realized that the Expected method actually runs instead of returning a result directly. the object that the test is performed on is partiallyMocked, and the method itself is inside the same object
The method itself is virtual, so it should get override by Rhino to return a value;
Am i missing anything here?
[Test]
public void TestEnsureCreatingMeasureForSingleAssignee()
{
var assignees = new List<MeasureAssignee> {new MeasureAssignee {Measure = new Measure{DatePeriod = RecurrenceFrequency.Annually}}};
_baseVirtualListServiceTest.Expect(c=>c.CreateMeauresValuesForOverDueMeasure(null, null, false))
.IgnoreArguments()
.Return( new List<DueMeasure>()); //this is actually running
Mocks.ReplayAll();
_baseVirtualListServiceTest.CreateOverDueMeasureForAssignees(assignees, false);
}