Stellen Sie sich diese Klasse vor
public class Foo {
private Handler _h;
public Foo(Handler h)
{
_h = h;
}
public void Bar(int i)
{
_h.AsyncHandle(CalcOn(i));
}
private SomeResponse CalcOn(int i)
{
...;
}
}
Mo (q) cking Handler in einem Test von Foo, wie könnte ich überprüfen, was Bar()
passiert ist _h.AsyncHandle
?