CSIT Fix for SDC-2585
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / configuration / mocks / es / ElasticSearchClientMockTest.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.asdctool.configuration.mocks.es;
22
23 import org.junit.Test;
24
25 public class ElasticSearchClientMockTest {
26
27         private ElasticSearchClientMock createTestSubject() {
28                 return new ElasticSearchClientMock();
29         }
30
31         @Test
32         public void testInitialize() throws Exception {
33                 ElasticSearchClientMock testSubject;
34
35                 // default test
36                 testSubject = createTestSubject();
37                 testSubject.initialize();
38         }
39
40         @Test
41         public void testSetClusterName() throws Exception {
42                 ElasticSearchClientMock testSubject;
43                 String clusterName = "";
44
45                 // default test
46                 testSubject = createTestSubject();
47                 testSubject.setClusterName(clusterName);
48         }
49
50         @Test
51         public void testSetLocal() throws Exception {
52                 ElasticSearchClientMock testSubject;
53                 String strIsLocal = "";
54
55                 // default test
56                 testSubject = createTestSubject();
57                 testSubject.setLocal(strIsLocal);
58         }
59
60         @Test
61         public void testSetTransportClient() throws Exception {
62                 ElasticSearchClientMock testSubject;
63                 String strIsTransportclient = "";
64
65                 // default test
66                 testSubject = createTestSubject();
67                 testSubject.setTransportClient(strIsTransportclient);
68         }
69 }