Home | History | Annotate | Download | only in easymock-tools

Lines Matching full:ctrl

895     IMocksControl ctrl = createStrictControl();

896 IMyInterface mock = ctrl.createMock(IMyInterface.class);
897 ctrl.replay();
898 ctrl.verify();
899 ctrl.reset();
910 IMocksControl ctrl = createStrictControl();
911 IMyInterface mock1 = ctrl.createMock(IMyInterface.class);
912 IMyInterface mock2 = ctrl.createMock(IMyInterface.class);
917 ctrl.checkOrder(false);
924 ctrl.checkOrder(true);
929 ctrl.replay();