|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| TestJpaManagedTransactionStrategy | Line # 35 | 10 | 0% | 1 | 0 | 100% |
1.0
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| (1) | |||
| Result | |||
|
1.0
|
org.perfectjpattern.jee.integration.dao.TestJpaManagedTransactionStrategy.testGetTransaction
org.perfectjpattern.jee.integration.dao.TestJpaManagedTransactionStrategy.testGetTransaction
|
1 PASS | |
| 1 | //---------------------------------------------------------------------- | |
| 2 | // | |
| 3 | // PerfectJPattern: "Design patterns are good but components are better!" | |
| 4 | // TestJpaManagedTransactionStrategy.java Copyright (c) 2009 | |
| 5 | // Giovanni Azua Garcia bravegag@hotmail.com | |
| 6 | // | |
| 7 | // This program is free software; you can redistribute it and/or | |
| 8 | // modify it under the terms of the GNU General Public License | |
| 9 | // as published by the Free Software Foundation; either version 3 | |
| 10 | // of the License, or (at your option) any later version. | |
| 11 | // | |
| 12 | // This program is distributed in the hope that it will be useful, | |
| 13 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 | // GNU General Public License for more details. | |
| 16 | // | |
| 17 | // You should have received a copy of the GNU General Public License | |
| 18 | // along with this program; if not, see <http://www.gnu.org/licenses/>. | |
| 19 | // | |
| 20 | //---------------------------------------------------------------------- | |
| 21 | package org.perfectjpattern.jee.integration.dao; | |
| 22 | ||
| 23 | import junit.framework.*; | |
| 24 | ||
| 25 | import org.easymock.*; | |
| 26 | import org.perfectjpattern.jee.api.integration.dao.*; | |
| 27 | ||
| 28 | /** | |
| 29 | * Test suite for the {@link JpaManagedTransactionStrategy} | |
| 30 | * | |
| 31 | * @author <a href="mailto:bravegag@hotmail.com">Giovanni Azua</a> | |
| 32 | * @version $Revision: 1.0 $Date: Feb 12, 2009 9:43:51 PM $ | |
| 33 | */ | |
| 34 | public | |
| 35 | class TestJpaManagedTransactionStrategy | |
| 36 | extends TestCase | |
| 37 | { | |
| 38 | //------------------------------------------------------------------------ | |
| 39 | // public | |
| 40 | //------------------------------------------------------------------------ | |
| 41 | 1 |
public void |
| 42 | testGetTransaction() | |
| 43 | { | |
| 44 | 1 | ITransaction myMockTransaction = EasyMock.createNiceMock( |
| 45 | ITransaction.class); | |
| 46 | 1 | ISession mySession = EasyMock.createNiceMock(ISession.class); |
| 47 | 1 | ISessionStrategy myMockSessionStrategy = EasyMock.createNiceMock( |
| 48 | ISessionStrategy.class); | |
| 49 | ||
| 50 | 1 | EasyMock.expect(myMockSessionStrategy.getSession()).andReturn( |
| 51 | mySession); | |
| 52 | 1 | EasyMock.expect(mySession.getTransaction()).andReturn( |
| 53 | myMockTransaction); | |
| 54 | 1 | EasyMock.replay(myMockSessionStrategy, mySession); |
| 55 | ||
| 56 | 1 | JpaManagedTransactionStrategy myTransactionStrategy = |
| 57 | new JpaManagedTransactionStrategy(); | |
| 58 | 1 | myTransactionStrategy.setSessionStrategy(myMockSessionStrategy); |
| 59 | ||
| 60 | 1 | ITransaction myTransaction = myTransactionStrategy.getTransaction(); |
| 61 | ||
| 62 | 1 | assertNotNull("Transaction is expected not to be null", myTransaction); |
| 63 | } | |
| 64 | } | |
|
||||||||||||