From e00e3d914dccb533ca8db4f5c2a7c585b10262d5 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Tue, 20 Mar 2018 09:31:56 +0000 Subject: Add UT for BpelRestClientTest Add UT for BpelRestClientTest class. Change-Id: Ib1d2fce5138503d2b8b056b1781e4ae82138e3a5 Issue-ID: SO-369 Signed-off-by: subhash kumar singh --- .../mso/adapters/network/BpelRestClientTest.java | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 adapters/mso-network-adapter/src/test/java/org/openecomp/mso/adapters/network/BpelRestClientTest.java (limited to 'adapters/mso-network-adapter') diff --git a/adapters/mso-network-adapter/src/test/java/org/openecomp/mso/adapters/network/BpelRestClientTest.java b/adapters/mso-network-adapter/src/test/java/org/openecomp/mso/adapters/network/BpelRestClientTest.java new file mode 100644 index 0000000000..9ab6ce6a70 --- /dev/null +++ b/adapters/mso-network-adapter/src/test/java/org/openecomp/mso/adapters/network/BpelRestClientTest.java @@ -0,0 +1,97 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2018 Huawei Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ +package org.openecomp.mso.adapters.network; + +import org.junit.Test; + +public class BpelRestClientTest { + + BpelRestClient bpelRestClient = new BpelRestClient(); + + @Test + public void getSocketTimeoutTest() throws Exception { + bpelRestClient.getSocketTimeout(); + } + + @Test + public void setSocketTimeoutTest() throws Exception { + bpelRestClient.setSocketTimeout(300); + } + + @Test + public void getConnectTimeoutTest() throws Exception { + bpelRestClient.getConnectTimeout(); + } + + @Test + public void setConnectTimeoutTest() throws Exception { + bpelRestClient.setConnectTimeout(200); + } + + @Test + public void getRetryCountTest() throws Exception { + bpelRestClient.getRetryCount(); + } + + @Test + public void setRetryCountTest() throws Exception { + bpelRestClient.setRetryCount(3); + } + + @Test + public void getRetryIntervalTest() throws Exception { + bpelRestClient.getRetryInterval(); + } + + @Test + public void setRetryIntervalTest() throws Exception { + bpelRestClient.setRetryInterval(3); + } + + @Test + public void getCredentialsTest() throws Exception { + bpelRestClient.getCredentials(); + } + + @Test + public void setCredentialsTest() throws Exception { + bpelRestClient.setCredentials("test"); + } + + @Test + public void getRetryListTest() throws Exception { + bpelRestClient.getRetryList(); + } + + @Test + public void setRetryListTest() throws Exception { + bpelRestClient.setRetryList("retry list"); + } + + @Test + public void getLastResponseCodeTest() throws Exception { + bpelRestClient.getLastResponseCode(); + } + + @Test + public void getLastResponseTest() throws Exception { + bpelRestClient.getLastResponse(); + } +} \ No newline at end of file -- cgit 1.2.3-korg