Is there a way to mole/stub/mock a method with the params keyword?
Here is an example of the Method I am trying to mole/stub:
Void SomeMethod(bool finalizer,params string[] parameters)...
I have tried to mole it like so:
scriptServiceStub.SomeMethodBooleanStringArray=
(bool finalizer, params string[] parameters) =>
{
agentCommCalled = true;
};
I am getting the following compile error:
'; expected' and 'Type Expected'
that highlights the params keyword.