/**
* Tests the reset method.
*/
public void testReset() {
Mock mockCommand2 = mock(Command.class);
Command command2 = (Command) mockCommand2.proxy();
mockCommand.expects(once()).method("run");
mockCommand2.expects(once()).method("run");
mockCommand2.expects(once()).method("undo");