[DMAAP-CLIENT] First sonar issues review part2
[dmaap/messagerouter/dmaapclient.git] / src / test / java / org / onap / dmaap / mr / tools / MRCommandContextTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright © 2021 Orange.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.dmaap.mr.tools;
24
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28
29 import static org.junit.Assert.assertTrue;
30
31
32 public class MRCommandContextTest {
33     private MRCommandContext command = null;
34     private String[] parts = new String[5];
35
36     @Before
37     public void setUp() throws Exception {
38         command = new MRCommandContext();
39
40         for (int i = 0; i < parts.length; i++) {
41             parts[i] = "String" + (i + 1);
42         }
43
44     }
45
46     @After
47     public void tearDown() throws Exception {
48
49     }
50
51     @Test
52     public void testRequestShutdown() {
53
54         command.requestShutdown();
55         assertTrue(true);
56
57     }
58
59     @Test
60     public void testShouldContinue() {
61
62         command.shouldContinue();
63         assertTrue(true);
64
65     }
66
67     @Test
68     public void testSetAuth() {
69
70         command.setAuth("key", "pwd");
71         assertTrue(true);
72
73     }
74
75     @Test
76     public void testClearAuth() {
77
78         command.clearAuth();
79         assertTrue(true);
80
81     }
82
83     @Test
84     public void testCheckClusterReady() {
85
86         command.checkClusterReady();
87         assertTrue(true);
88
89     }
90
91     @Test
92     public void testGetCluster() {
93
94         command.getCluster();
95         assertTrue(true);
96
97     }
98
99     @Test
100     public void testClearCluster() {
101
102         command.clearCluster();
103         assertTrue(true);
104
105     }
106
107     @Test
108     public void testAddClusterHost() {
109
110         command.addClusterHost("host");
111         assertTrue(true);
112
113     }
114
115     @Test
116     public void testGetApiKey() {
117
118         command.getApiKey();
119         assertTrue(true);
120
121     }
122
123     @Test
124     public void testGetApiPwd() {
125
126         command.getApiPwd();
127         assertTrue(true);
128
129     }
130
131     @Test
132     public void testUseTracer() {
133
134         command.useTracer(null);
135         assertTrue(true);
136
137     }
138
139     @Test
140     public void testNoTracer() {
141
142         command.noTracer();
143         assertTrue(true);
144
145     }
146
147     @Test
148     public void testApplyTracer() {
149
150         command.applyTracer(null);
151         assertTrue(true);
152
153     }
154
155 }