|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
IBehavior.java | - | - | - | - |
|
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; | |
8 | ||
9 | import org.easymock.ArgumentsMatcher; | |
10 | ||
11 | public interface IBehavior { | |
12 | ||
13 | void setDefaultMatcher(ArgumentsMatcher defaultMatcher); | |
14 | ||
15 | void setMatcher(Method method, ArgumentsMatcher matcher); | |
16 | ||
17 | void addExpected(MethodCall methodCall, Result result, Range count); | |
18 | ||
19 | void setDefaultResult(Method method, Result result); | |
20 | ||
21 | Result addActual(MethodCall methodCall); | |
22 | ||
23 | void verify(); | |
24 | } |
|