Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to mock a data repository object but after setting an expectation on my MockRepository, it returns null every time. My code is as follows:

    [Test]
    public void GetById_NotNull()
    {
        Person expectedPerson = new Person() { Id = 1, Name="Jon"};

        MockRepository MockRepository = new MockRepository();
        var FakePersonRepository = MockRepository.StrictMock<IRepository<Person>>();

        FakePersonRepository.Expect(action => action.Get(1)).IgnoreArguments().Return(expectedPerson);

        PersonService PersonService = new PersonService(FakePersonRepository);
        Person returnedPerson = PersonService.Get(1);

        Assert.IsNotNull(returnedPerson);
    }

    //and inside my person service
    public class PersonService
    {
         private IRepository<Person> _PersonRepository;
         public PersonService(IRepository<Person> PersonRepository)
         {
           this._PersonRepository = PersonRepository;
         }

         public Person Get(int Id)
         {
             Person p = _PersonRepository.Get(Id);
             return p;
          }
    }

The assertion at the bottom of the Test fails and returned person is always null. I know I must be doing something wrong with my mock....ideas?

share|improve this question

5 Answers

Try doing a

mockRepository.ReplayAll()

after the line where you set your Expect.

share|improve this answer

As others have said, I believe you will need a Replay somewhere with the style of tests you are using; As an alternative, you could use the newer AAA Syntax along with the static MockRepository.GenerateMock<>()/MockRepository.GenerateStub<>() methods which would not require a Replay.

share|improve this answer

I'm not super familiar with RhinoMocks (I've been using Moq), but couldn't:

FakePersonRepository.Expect(action => action.Get(1)).IgnoreArguments().Return(expectedPerson);

be

FakePersonRepository.Expect(action => action.Get(1)).Return(expectedPerson);

I also think you need a Replay() with RM.

share|improve this answer
1  
Yeah the IgnoreArguments is superfluous. Its the replay I was missing. – Dav Evans Apr 7 '09 at 22:50
up vote 1 down vote accepted

Chris is on the money here. The AAA syntax and using GenerateStub for this senario is best.

var FakePersonRepository = MockRepository.GenerateStub<<IRepository<Person>>();
FakePersonRepository.Stub(x => x.Get(1)).Returns(expectedPerson);

PersonService PersonService = new PersonService(FakePersonRepository);
Person returnedPerson = PersonService.Get(1);
share|improve this answer

With the AAA syntax and GenerateMock you can also verify that PersonRepository is called with the correct parameter and correct number of times:

Person expectedPerson = new Person() { Id = 1, Name="Jon"}; 

MockRepository MockRepository = new MockRepository(); 
var FakePersonRepository = MockRepository.GenerateMock<IRepository<Person>>(); 

FakePersonRepository.Expect(action => action.Get(1)).Return(expectedPerson).Repeat.Once(); 
PersonService PersonService = new PersonService(FakePersonRepository); 
Person returnedPerson = PersonService.Get(1); 

Assert.IsNotNull(returnedPerson); 
FakePersonRepository.VerifyAllExpectations();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.