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);
}
link|improve this question
1  
Could you should the initialization of _baseVirtualListServiceTest? And the signature of the CreateMeauresValuesForOverDueMeasure call? – Patrick Steele Jun 10 '11 at 15:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.