update the package name
[dmaap/messagerouter/msgrtr.git] / src / test / java / org / onap / dmaap / mr / cambria / transaction / TransactionObjTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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.onap.dmaap.mr.cambria.transaction;
22
23 import static org.junit.Assert.*;
24
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28
29 import org.onap.dmaap.dmf.mr.transaction.TransactionObj;
30
31 public class TransactionObjTest {
32
33         @Before
34         public void setUp() throws Exception {
35         }
36
37         @After
38         public void tearDown() throws Exception {
39         }
40
41         @Test
42         public void testAsJsonObject() {
43                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
44                 
45                 try {
46                         obj.asJsonObject();
47                         
48                 } catch(NullPointerException e) {
49                         assertTrue(true);
50                 }
51                  
52         }
53         
54         @Test
55         public void testGetId() {
56                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
57                 obj.getId();
58                 assertTrue(true);
59
60         }
61         
62         @Test
63         public void testSetId() {
64                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
65                 obj.setId("23");
66                 assertTrue(true);
67          
68         }
69
70         @Test
71         public void testGetCreateTime() {
72                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
73                 obj.getCreateTime();
74                 assertTrue(true);
75                  
76         }
77         
78         @Test
79         public void testSetCreateTime() {
80                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
81                 obj.setCreateTime("12:00:00");
82                 assertTrue(true);
83                  
84         }
85         
86         @Test
87         public void testSerialize() {
88                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
89                 obj.serialize();
90                 assertTrue(true);
91                  
92         }
93         
94         @Test
95         public void testGetTotalMessageCount() {
96                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
97                 obj.getTotalMessageCount();
98                 assertTrue(true);
99                  
100         }
101         
102         @Test
103         public void testSetTotalMessageCount() {
104                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
105                 obj.setTotalMessageCount(200);
106                 assertTrue(true);
107                  
108         }
109         
110         @Test
111         public void testGetSuccessMessageCount() {
112                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
113                 obj.getSuccessMessageCount();
114                 assertTrue(true);
115                  
116         }
117         
118         @Test
119         public void testSetSuccessMessageCount() {
120                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
121                 obj.setSuccessMessageCount(198);
122                 assertTrue(true);
123                  
124         }
125         
126         @Test
127         public void testGetFailureMessageCount() {
128                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
129                 obj.getFailureMessageCount();
130                 assertTrue(true);
131                  
132         }
133         
134         @Test
135         public void testSetFailureMessageCount() {
136                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
137                 obj.setFailureMessageCount(2);
138                 assertTrue(true);
139                  
140         }
141         
142         @Test
143         public void testGetfData() {
144                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
145                 obj.getfData();
146                 assertTrue(true);
147                  
148         }
149         
150         @Test
151         public void testSetfData() {
152                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
153                 obj.setfData(null);
154                 assertTrue(true);
155                  
156         }
157         
158         @Test
159         public void testGetTrnRequest() {
160                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
161                 obj.getTrnRequest();
162                 assertTrue(true);
163                  
164         }
165         
166         @Test
167         public void testSetTrnRequest() {
168                 TransactionObj obj = new TransactionObj("23", 100, 98, 2);
169                 obj.setTrnRequest(null);
170                 assertTrue(true);
171                  
172         }
173         
174
175 }