KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > easymock > internal > IBehavior


1 /*
2  * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of
3  * the MIT License.
4  */

5 package org.easymock.internal;
6
7 import java.lang.reflect.Method JavaDoc;
8
9 import org.easymock.ArgumentsMatcher;
10
11 public interface IBehavior {
12
13     void setDefaultMatcher(ArgumentsMatcher defaultMatcher);
14
15     void setMatcher(Method JavaDoc method, ArgumentsMatcher matcher);
16
17     void addExpected(MethodCall methodCall, Result result, Range count);
18
19     void setDefaultResult(Method JavaDoc method, Result result);
20
21     Result addActual(MethodCall methodCall);
22
23     void verify();
24 }
25
Popular Tags