CSIT Fix for SDC-2585
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / common / transaction / mngr / RollbackManagerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.common.transaction.mngr;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.common.transaction.api.RollbackHandler;
25 import org.openecomp.sdc.common.transaction.api.TransactionUtils.DBActionCodeEnum;
26 import org.openecomp.sdc.common.transaction.api.TransactionUtils.DBTypeEnum;
27 import org.openecomp.sdc.common.util.MethodActivationStatusEnum;
28
29 import fj.data.Either;
30
31 public class RollbackManagerTest {
32
33         private RollbackManager createTestSubject() {
34                 return new RollbackManager(null, "", "", null);
35         }
36
37         
38         @Test
39         public void testTransactionRollback() throws Exception {
40                 RollbackManager testSubject;
41                 DBActionCodeEnum result;
42
43                 // default test
44         }
45
46         
47         @Test
48         public void testAddRollbackHandler() throws Exception {
49                 RollbackManager testSubject;
50                 RollbackHandler rollbackHandler = null;
51                 Either<RollbackHandler, MethodActivationStatusEnum> result;
52
53                 // default test
54         }
55
56         
57         @Test
58         public void testGetRollbackHandler() throws Exception {
59                 RollbackManager testSubject;
60                 DBTypeEnum dbType = null;
61                 Either<RollbackHandler, MethodActivationStatusEnum> result;
62
63                 // default test
64         }
65 }