My problem is that I want to stub a property in my abstract class, because my class in test uses that property. I'm currently using latest version of Moq.
My abstract class looks like this:
public abstract class BaseService
{
protected IDrawingSystemUow Uow { get; set; }
}
And my class in test looks like this:
public class UserService : BaseService, IUserService
{
public bool UserExists(Model model)
{
var user = this.Uow.Users.Find(model.Id);
if(user == null) { return false; }
reurn true;
}
}
I can't figure out how I can stub the Uow property. Does anybody have any clue? Or is my design that bad that I need to move to Uow property to my class in test?