View Javadoc
1 /* Copyright (c) 2000-2003, jMock.org. See bundled LICENSE.txt */ 2 package org.jmock.dynamic; 3 4 import org.jmock.expectation.Verifiable; 5 6 import java.lang.reflect.InvocationHandler; 7 8 public interface DynamicMock 9 extends Verifiable, InvocationHandler { 10 void add(Invokable invokable); 11 12 Object proxy(); 13 14 void reset(); 15 }

This page was automatically generated by Maven