Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32291/input/javasrc/biz/xsoftware/mock2
Modified Files:
MockObject.java
Log Message:
check in for further modify , the build is successful , but the test is not totally right right now
Index: MockObject.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2/MockObject.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** MockObject.java 23 Feb 2006 11:36:32 -0000 1.4
--- MockObject.java 20 Mar 2006 15:01:20 -0000 1.5
***************
*** 64,67 ****
--- 64,68 ----
* @return the CalledMethod information that will be filled after the method
* is called
+ * @throws NoSuchMethodException
*/
public CalledMethod expect(String methodName, Behavior behavior,
***************
*** 135,141 ****
* @return the CalledMethod information that will be filled after the method
* is called
*/
public CalledMethod expect(String methodName, Behavior behavior,
! long timeout, Class... params);
/**
--- 136,143 ----
* @return the CalledMethod information that will be filled after the method
* is called
+ * @throws NoSuchMethodException
*/
public CalledMethod expect(String methodName, Behavior behavior,
! long timeout, Class... params) ;
/**
|