Hi,
Assume I have the following method to mock :
Class A
{
int Foo(delegate del)
{
....
}
}
Class B
{
void Bb()
{
...
}
}
On the testing code, how can I expect the A.Foo to be called with a specific delegate B.Bb delegate as parameter ?
Thanks in advance.