Hi,
I have a scenario where I have to reuse the same Dynamic Mock for
several tests. However, it appears that there is no "reset()" methods on
the Mock class. Am I missing something? If not, can I add the following
to Mock.java:
public void reset()
{
this.methods = new MethodMap();
}
Thanks
-Vincent
|