Hans Løken
Hans Løken

Reputation: 417

Verify method with Delegate parameter in Moq

Using Moq for generation of Stubs and Mocks in my unit tests, I have a case where I want to Verify that a method that takes a Delegate parameter is called. I don't care about the particular Delegate parameter supplied I just want to make sure that the method is in fact called. The method looks like this:

public interface IInvokerProxy{
    void Invoke(Delegate method);
    ...
}

In my tests I would like to do something like this:

invokerProxyMock.Verify( proxy => proxy.Invoke( It.IsAny<Delegate>));

Currently it gives me an error Argument '1': cannot convert from 'method group' to 'System.Delegate'. Does anyone know if this is possible?

Upvotes: 4

Views: 2610

Answers (1)

Ruben Bartelink
Ruben Bartelink

Reputation: 61795

I believe you're missing the parentheses on It.IsAny<Delegate>().

Upvotes: 6

Related Questions