1

Referring to the following sample code:

using NSubstitute;
using NUnit.Framework;

public class Class1
{
}

public class Class2
{
    public void Method(Class1 class1)
    {
    }
}

public class Class3 : Class1
{
}

[TestFixture]
public class ArgAnyTest
{
    [Test]
    public void Test()
    {
        var called = false;
        var class2 = Substitute.For<Class2>();
        class2.When(@this => @this.Method(Arg.Any<Class1>())).Do(invocation => called = true);

        class2.Method(new Class3());

        Assert.That(called, Is.EqualTo(true));
    }
}

The assert fails indicating that Method stub was not matched. Did I misunderstand the argument matcher documentation page which claims that Arg.Any can be used "to match any argument of a specific sub-type"?

Chry Cheng
  • 3,378
  • 5
  • 47
  • 79

1 Answers1

2

It appears that the problem isn't in argument matching but in the stubbing. Method must be virtual or it won't get stubbed:

public class Class2
{
    virtual public void Method(Class1 class1)
    {
    }
}
Chry Cheng
  • 3,378
  • 5
  • 47
  • 79