From: Jeff M. <cus...@us...> - 2002-06-28 17:35:41
|
Update of /cvsroot/mockobjects/mockobjects-java/src/j2ee/common/com/mockobjects/jms In directory usw-pr-cvs1:/tmp/cvs-serv21660/src/j2ee/common/com/mockobjects/jms Modified Files: MockConnection.java Log Message: Added abstraction layer to sql mocks to allow build against jdk1.4 Index: MockConnection.java =================================================================== RCS file: /cvsroot/mockobjects/mockobjects-java/src/j2ee/common/com/mockobjects/jms/MockConnection.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- MockConnection.java 23 Feb 2002 18:50:35 -0000 1.2 +++ MockConnection.java 28 Jun 2002 17:35:39 -0000 1.3 @@ -9,9 +9,9 @@ public class MockConnection extends MockObject implements Connection { - protected ExpectationCounter myCloseCalls = new ExpectationCounter("MockConnection.close"); - protected ExpectationCounter myStartCalls = new ExpectationCounter("MockConnection.start"); - protected ExpectationCounter myStopCalls = new ExpectationCounter("MockConnection.stop"); + protected ExpectationCounter myCloseCalls = new ExpectationCounter("CommonMockConnection.close"); + protected ExpectationCounter myStartCalls = new ExpectationCounter("CommonMockConnection.start"); + protected ExpectationCounter myStopCalls = new ExpectationCounter("CommonMockConnection.stop"); private JMSException myException; |