1 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 } 25 | Popular Tags |