I am trying to figure out this Moq gymnastics for the last few hours. I have the following classes - and I am trying to do a somewhat simple verification and it's failing - and I can't seem to figure out why.
Notice during the Moq setup, I return a Mock.Of when BeginCounter is requested - but when I try to verify it it fails. However, if I uncomment the line p.Setup(e => e.BeginCounter.Increment()) the verify works.
What am I missing?
public interface IPerformanceCounters
{
void Increment();
void Decrement();
}
public interface IContext
{
IPerformanceCounters BeginCounter { get; }
}
public class Test
{
private readonly IContext context;
public Test(IContext context) { this.context = context; }
public void React() { this.context.BeginCounter.Increment(); }
}
void Test()
{
// ARRANGE
var p = new Mock<IContext>();
p.Setup(e => e.BeginCounter).Returns(() => Mock.Of<IPerformanceCounters>()); // This does not work
// p.Setup(e => e.BeginCounter.Increment()); // However, this works!
// ACT
var test = new Test(p.Object);
test.React();
// ASSERT
p.Verify(v => v.BeginCounter.Increment(), Times.Once());
}