Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/test/mock2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23654/input/javasrc/biz/xsoftware/test/mock2
Added Files:
ListenerOne.java
Log Message:
get code coverage back up to 80% by eliminating unfinished examples and running the example tests.
--- NEW FILE: ListenerOne.java ---
/*
* Created on Apr 24, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package biz.xsoftware.test.mock2;
import java.io.IOException;
import java.util.Map;
/**
* @author Dean Hiller
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public interface ListenerOne {
public void callMeFirst(int s);
public void callMeSecond(String s) throws IOException;
public void multipleParams(String x, Integer i);
public int respondTo(Map map);
public boolean responsd();
public void noParams();
}
|