Update of /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31048/input/javasrc/biz/xsoftware/mock2
Modified Files:
Messages.java
Log Message:
add findbugs, checkstyle to mocklib.
Index: Messages.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib2/input/javasrc/biz/xsoftware/mock2/Messages.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Messages.java 16 Feb 2006 15:37:35 -0000 1.2
--- Messages.java 19 Feb 2006 19:20:54 -0000 1.3
***************
*** 1,9 ****
package biz.xsoftware.mock2;
! public class Messages {
private Messages() {}
! public static final String VERIFY_NOT_CALLED = "MockObject.verify() must be called before accessing and of the methods on CalledMethod object";
}
--- 1,10 ----
package biz.xsoftware.mock2;
! public final class Messages {
private Messages() {}
! public static final String VERIFY_NOT_CALLED =
! "MockObject.verify() must be called before accessing and of the methods on CalledMethod object";
}
|