Refactoring Consolidation Service
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / common / transaction / mngr / TransactionManagerTest.java
1 package org.openecomp.sdc.common.transaction.mngr;
2
3 import org.junit.Test;
4 import org.openecomp.sdc.common.transaction.api.ITransactionSdnc;
5 import org.openecomp.sdc.common.transaction.api.TransactionUtils.ActionTypeEnum;
6
7 public class TransactionManagerTest {
8
9         private TransactionManager createTestSubject() {
10                 return new TransactionManager();
11         }
12
13         
14         @Test
15         public void testGetTransaction() throws Exception {
16                 TransactionManager testSubject;
17                 String userId = "";
18                 ActionTypeEnum actionType = null;
19                 ITransactionSdnc result;
20
21                 // default test
22                 testSubject = createTestSubject();
23         }
24
25         
26         @Test
27         public void testGenerateTransactionID() throws Exception {
28                 TransactionManager testSubject;
29                 Integer result;
30
31                 // default test
32                 testSubject = createTestSubject();
33         }
34
35         
36         @Test
37         public void testResetTransactionId() throws Exception {
38                 TransactionManager testSubject;
39
40                 // default test
41                 testSubject = createTestSubject();
42         }
43
44         
45         @Test
46         public void testInit() throws Exception {
47                 TransactionManager testSubject;
48
49                 // default test
50                 testSubject = createTestSubject();
51         }
52 }