Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13102/input/javasrc/biz/xsoftware/mock2
Modified Files:
Messages.java
Log Message:
changed and cleaned some code
Index: Messages.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2/Messages.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Messages.java 19 Feb 2006 19:20:54 -0000 1.3
--- Messages.java 21 Mar 2006 09:25:33 -0000 1.4
***************
*** 5,10 ****
--- 5,13 ----
private Messages() {}
+ public static final String METHOD_NAME_CANT_BE_NULL="method name can not be null, please provide a method name";
public static final String VERIFY_NOT_CALLED =
"MockObject.verify() must be called before accessing and of the methods on CalledMethod object";
+ public static final String METHOD_CAN_NOT_ACCESS="Mocklib can not retrive the method you defined in your "+
+ "Behavior Implementation class, Please make sure the method is accessable";
}
|