}
public Expectation expects(String methodName) {
Expectation expects = new Expectation(this, methodName);
expectations.add(expects);
return expects.once();
}
/** verify all expectations on the mock */
public void verify() {
for (Iterator i = expectations.iterator(); i.hasNext();) {