Update of /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3 In directory sc8-pr-cvs1:/tmp/cvs-serv501/src/test/junitbook/ejb/service3 Modified Files: TestPetstoreEJB.java TestPetstoreEJB2.java TestOrderProcessorMDB.java TestPetstoreEJBMO.java Log Message: - "public void setUp()" -> "protected void setUp()" - "public void tearDown()" -> "protected void tearDown()" Index: TestPetstoreEJB.java =================================================================== RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestPetstoreEJB.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestPetstoreEJB.java 9 Sep 2003 14:40:32 -0000 1.7 --- TestPetstoreEJB.java 14 Sep 2003 08:58:28 -0000 1.8 *************** *** 51,55 **** } ! public void setUp() throws Exception { petstore = new PetstoreEJB() {}; --- 51,55 ---- } ! protected void setUp() throws Exception { petstore = new PetstoreEJB() {}; *************** *** 130,134 **** } ! public void tearDown() { jndiTestSetup.getMockContext().verify(); --- 130,134 ---- } ! protected void tearDown() { jndiTestSetup.getMockContext().verify(); Index: TestPetstoreEJB2.java =================================================================== RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestPetstoreEJB2.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestPetstoreEJB2.java 18 May 2003 10:23:32 -0000 1.5 --- TestPetstoreEJB2.java 14 Sep 2003 08:58:28 -0000 1.6 *************** *** 19,23 **** } ! public void setUp() throws Exception { super.setUp(); --- 19,23 ---- } ! protected void setUp() throws Exception { super.setUp(); Index: TestOrderProcessorMDB.java =================================================================== RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestOrderProcessorMDB.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestOrderProcessorMDB.java 18 May 2003 10:23:32 -0000 1.4 --- TestOrderProcessorMDB.java 14 Sep 2003 08:58:28 -0000 1.5 *************** *** 18,22 **** } ! public void setUp() throws Exception { super.setUp(); --- 18,22 ---- } ! protected void setUp() throws Exception { super.setUp(); Index: TestPetstoreEJBMO.java =================================================================== RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestPetstoreEJBMO.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestPetstoreEJBMO.java 16 May 2003 08:05:54 -0000 1.3 --- TestPetstoreEJBMO.java 14 Sep 2003 08:58:28 -0000 1.4 *************** *** 52,56 **** } ! public void setUp() throws Exception { petstore = new PetstoreEJB() {}; --- 52,56 ---- } ! protected void setUp() throws Exception { petstore = new PetstoreEJB() {}; |