1 package com.mockobjects.dynamic;2 3 import com.mockobjects.*;4 5 public interface Callable extends Verifiable {6 String getDescription();7 Object call( Mock mock, String methodName, Object [] args ) throws Throwable ;8 boolean matches(String methodName, Object [] args);9 }10