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 am trying out moq and I'm running into a problem with the following test body:

var child = new Mock<ZooNode>();
var parent = new Mock<ZooNode>();
child.Object.Parent = parent.Object;
parent.Expect(p => p.Children.Contains(child.Object)).Returns(true);

which throws :

System.ArgumentException: Invalid expectation on a non-overridable member: p => p.Children.Contains(value(ZooCms.Core.Tests.Model.ZooNodeTest+<>c__DisplayClass0).child.Object).

and I'm not quite sure if its moq, but the code that I'm testing is fairly simple. I'm not sure if it matters, but ZooNode is an abstract class.

Thanks in advance.

EDIT

Heres the code after suggested revision from darin's response:

public abstract class ZooNode : ZooObject
{
    private ZooNode _parent{ get; set;}
    public ZooNode Parent { 
        get
        {
            return _parent;
        }
        set
        {
            if(Parent != null) 
                Parent.Children.Remove(value);
            _parent = value;
            _parent.Children.Add(this);
        }
    }
    public virtual IList<ZooNode> Children { get; private set; }

}

it now throws

Test method ZooCms.Core.Tests.Model.ZooNodeTest.TestSetParentAddsNodeToParentNodeList threw exception: System.NullReferenceException: Object reference not set to an instance of an object..

share|improve this question

2 Answers

up vote 4 down vote accepted

Your Children collection property needs to be virtual if you want to define expectations on it:

public abstract class ZooNode
{
    public ZooNode Parent { get; set; }
    public virtual IList<ZooNode> Children { get; set; }
}
share|improve this answer
When I try that, I get the following exception: Test method ZooCms.Core.Tests.Model.ZooNodeTest.TestSetParentAddsNodeToParentNodeList threw exception: System.NullReferenceException: Object reference not set to an instance of an object.. – Chance Jan 18 '09 at 20:45
Sample code would be helpful here. – Darin Dimitrov Jan 18 '09 at 20:48
Okay - editing it in – Chance Jan 18 '09 at 20:49
Ah - figured it out, any object that it uses needs to be virtual.. thanks man – Chance Jan 18 '09 at 20:59

Chance, You are never actually initializing the Children collection. So, either you need to initialize it in a constructor, or you can tell Moq to Mock it by default.

var parent = new Mock<ZooNode>() { DefaultValue = DefaultValue.Mock };
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.