Folks,
Couldn't find an appropriate forum for this question so hopefully, someone could help me here or atleast point me to a relevant forum.
Basically, to make a long story short, I would like to understand what this means:
mockObject.method();
mockObjectControl.replay();
I understand what this does:
mockObject.method();
mockObjectControl.setReturnValue("some value");
mockObjectControl.replay();
..but not what replay() does in the first case. Thanks!