I have been read a lot of others QA about this topic and I still can't find the solution to my problem, so I have decide to expose my case.
I have this interface
public interface IRepository<T> where T : class, IEntity
{
IQueryable<T> Find(Expression<Func<T, bool>> predicate);
T FindIncluding(int id, params Expression<Func<T, object>>[] includeProperties);
}
And this is the basic structure of the method that contains the Mock that I would like to setup
public PeopleController CreatePeopleController()
{
var mockUnitofWork = new Mock<IUnitOfWork>();
var mockPeopleRepository = new Mock<IRepository<Person>>();
mockPeopleRepository.Setup(r=>r.Find().Returns(new Person(){});
mockUnitofWork.Setup(p => p.People).Returns(mockPeopleRepository.Object);
return new PeopleController(mockUnitofWork.Object);
}
I have been trying to setup the Mock using this way:
public PeopleController CreatePeopleController()
{
var mockUnitofWork = new Mock<IUnitOfWork>();
var mockPeopleRepository = new Mock<IRepository<Person>>();
mockPeopleRepository.Setup(r=>r.Find(It.isAny<Expression<Func<Person,bool>>>()).Single()).Returns(new Person(){});
mockUnitofWork.Setup(p => p.People).Returns(mockPeopleRepository.Object);
return new PeopleController(mockUnitofWork.Object);
}
But the system always throws the same exception "System.NotSupportedException: Expression references a method that does not belong to the mocked object .... "
Also I would like to add that I am using MSTest and Moq
I know that setup a Mock using Expression is not easy and not recommended, but it is very important for me because "Find" is a method that I use a lot in my app