diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-03-20 09:31:56 +0000 |
---|---|---|
committer | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-03-20 10:23:12 +0000 |
commit | e00e3d914dccb533ca8db4f5c2a7c585b10262d5 (patch) | |
tree | b15b0bb3a5cb6f4c5a427aee2c4a453a3e374be3 /adapters/mso-network-adapter | |
parent | 9b99cfe26aafbca5a33e5dcb4cd976e4b44da81d (diff) |
Add UT for BpelRestClientTest
Add UT for BpelRestClientTest class.
Change-Id: Ib1d2fce5138503d2b8b056b1781e4ae82138e3a5
Issue-ID: SO-369
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'adapters/mso-network-adapter')
-rw-r--r-- | adapters/mso-network-adapter/src/test/java/org/openecomp/mso/adapters/network/BpelRestClientTest.java | 97 |
1 files changed, 97 insertions, 0 deletions
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 |