Automated test coverage code
[dmaap/dbcapi.git] / src / test / java / org / onap / dmaap / dbcapi / model / DRPubTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2018 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 package org.onap.dmaap.dbcapi.model;
21
22 import static org.junit.Assert.*;
23
24 import java.lang.reflect.Constructor;
25 import java.lang.reflect.InvocationTargetException;
26 import java.lang.reflect.Method;
27
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Test;
31 public class DRPubTest {
32         String d, un, up, f, p;
33
34         @Before
35         public void setUp() throws Exception {
36                 d = "central-onap";
37                 un = "user1";
38                 up = "secretW0rd";
39                 f = "234";
40                 p = "678";
41         }
42
43         @After
44         public void tearDown() throws Exception {
45         }
46
47
48         @Test
49         public void testDRPubClassDefaultConstructor() {
50
51                 DR_Pub t = new DR_Pub();
52         
53                 assertTrue( t.getDcaeLocationName() == null  );
54                 assertTrue( t.getUsername() == null  );
55                 assertTrue( t.getUserpwd() == null  );
56                 assertTrue( t.getFeedId() == null  );
57                 assertTrue( t.getPubId() == null  );
58         
59         }
60
61         @Test
62         public void testDRPubClassConstructor() {
63
64                 DR_Pub t = new DR_Pub( d, un, up, f, p );
65         
66                 assertTrue( d.equals( t.getDcaeLocationName() ));
67                 assertTrue( un.equals( t.getUsername() ));
68                 assertTrue( up.equals( t.getUserpwd() ));
69                 assertTrue( f.equals( t.getFeedId() ));
70                 assertTrue( p.equals( t.getPubId() ));
71         }
72
73         @Test
74         public void testDRPubClassSetters() {
75
76                 DR_Pub t = new DR_Pub();
77
78                 t.setDcaeLocationName( d );
79                 assertTrue( d.equals( t.getDcaeLocationName() ));
80                 t.setUsername( un );
81                 assertTrue( un.equals( t.getUsername() ));
82                 t.setUserpwd( up );
83                 assertTrue( up.equals( t.getUserpwd() ));
84                 t.setFeedId( f );
85                 assertTrue( f.equals( t.getFeedId() ));
86                 t.setPubId( p );
87                 assertTrue( p.equals( t.getPubId() ));
88         
89         }
90 }