Export to GitHub

moq - issue #314

Moq does not act on list that is returned with SetupGet().Returns(myList)


Posted on Jul 6, 2011 by Helpful Giraffe

What steps will reproduce the problem? The model interface: public interface IModel { List<IOffer> Offers2 { get; } BindingList<IOffer> Offers { get; } void CreateOffer(); }

The model implementation: public class Model : IModel { private readonly BindingList<IOffer> offers; private readonly List<IOffer> offers2;

public Model()
{
    this.offers = new BindingList&lt;IOffer&gt;();
    this.offers2 = new List&lt;IOffer&gt;();
}

public List&lt;IOffer&gt; Offers2
{
    get { return this.offers2; }
}

public BindingList&lt;IOffer&gt; Offers
{
    get { return this.offers; }
}

public void CreateOffer()
{
    this.Offers.Add(new Offer());      
    this.Offers2.Add(new Offer());
}

}

The model manipulator: public sealed class ModelManipulator { public void Manipulate(IModel model) { model.Offers.Clear(); model.Offers2.Clear();

    model.CreateOffer();
    model.CreateOffer();
    model.CreateOffer();
}

}

The test class (MSTest is used): [TestClass] public class ModelManipulatorFixture { private ModelManipulator testee;

private Mock&lt;IModel&gt; mockModel;

private BindingList&lt;IOffer&gt; offers;
private List&lt;IOffer&gt; offers2;

[TestInitialize]
public void TestInitialize()
{
    this.mockModel = new Mock&lt;IModel&gt;(MockBehavior.Strict);

    this.offers = new BindingList&lt;IOffer&gt;();
    this.offers2 = new List&lt;IOffer&gt;();

    this.mockModel.SetupGet(mock =&gt; mock.Offers).Returns(this.offers);
    this.mockModel.SetupGet(mock =&gt; mock.Offers2).Returns(this.offers2);

    this.mockModel.Setup(mock =&gt; mock.CreateOffer());

    this.testee = new ModelManipulator();
}

[TestMethod]
public void ManipulateModel()
{
    // act
    this.testee.Manipulate(this.mockModel.Object);

    // assert
    this.mockModel.Verify(mock =&gt; mock.CreateOffer(), Times.Exactly(3));

    Assert.AreEqual(3, this.offers2.Count);
    Assert.AreEqual(3, this.offers.Count);
}

}

What is the expected output? What do you see instead? Expected is that the assertions do not fail.

What version of the product are you using? On what operating system? Moq 4.0.10827.0, Windows 7 64 Enterprise Bit, Visual Studio 2010 Ultimate

Help

Comment #1

Posted on Jul 6, 2011 by Quick Monkey

Your line:

this.mockModel.Setup(mock => mock.CreateOffer());

Isn't adding anything to the lists, so obviously those will remain empty.

Comment #2

Posted on Jul 7, 2011 by Helpful Giraffe

I do not understand what you mean by "isn't adding anything to the list". The mocked method CreateOffer() in the Model does add items to the lists. public void CreateOffer() { this.Offers.Add(new Offer());
this.Offers2.Add(new Offer()); }

I have also tried the following assertion, wich fails also: Assert.AreEqual(3, this.mockModel.Object.Offers.Count);

Comment #3

Posted on Jul 7, 2011 by Quick Monkey

Nobody is invoking that method, that's the point. You are mocking IModel, not creating an instance of Model. The mock of an interface doesn't have any behavior.

So, this setup does absolutely nothing:

    this.mockModel.Setup(mock => mock.CreateOffer());

Status: Invalid

Labels:
Type-Defect Priority-Medium