1/*
2 * Copyright 2001-2009 OFFIS, Tammo Freese
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.easymock.internal;
17
18import org.easymock.IAnswer;
19
20public interface IMocksControlState extends ILegacyMethods {
21
22    Object invoke(Invocation invocation) throws Throwable;
23
24    void assertRecordState();
25
26    void andReturn(Object value);
27
28    void andThrow(Throwable throwable);
29
30    void andAnswer(IAnswer<?> answer);
31
32    void andDelegateTo(Object answer);
33
34    void andStubReturn(Object value);
35
36    void andStubThrow(Throwable throwable);
37
38    void andStubAnswer(IAnswer<?> answer);
39
40    void andStubDelegateTo(Object delegateTo);
41
42    void asStub();
43
44    void times(Range range);
45
46    void checkOrder(boolean value);
47
48    void makeThreadSafe(boolean threadSafe);
49
50    void checkIsUsedInOneThread(boolean shouldBeUsedInOneThread);
51
52    void replay();
53
54    void verify();
55}
56