From 8739e1df33bdfb0155b77252ebcc94e2f087b725 Mon Sep 17 00:00:00 2001 From: yufei_zhou Date: Thu, 19 Oct 2017 14:31:33 +0800 Subject: Update http query part Change-Id: I8b316decb203e3f4efbce8c9d47a88479065dbf6 Issue-ID: VFC-544 Signed-off-by: yufei_zhou --- .../http/client/HttpClientProcessorImplTest.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 nokia/vnfmdriver/vfcadaptorservice/vfcadaptor/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/http/client/HttpClientProcessorImplTest.java (limited to 'nokia/vnfmdriver/vfcadaptorservice/vfcadaptor/src/test') diff --git a/nokia/vnfmdriver/vfcadaptorservice/vfcadaptor/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/http/client/HttpClientProcessorImplTest.java b/nokia/vnfmdriver/vfcadaptorservice/vfcadaptor/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/http/client/HttpClientProcessorImplTest.java new file mode 100644 index 00000000..f070eda4 --- /dev/null +++ b/nokia/vnfmdriver/vfcadaptorservice/vfcadaptor/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/http/client/HttpClientProcessorImplTest.java @@ -0,0 +1,32 @@ +/* + * Copyright 2016-2017, Nokia Corporation + * + * 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. + */ + +package org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client; + +import java.io.IOException; + +import org.apache.http.client.ClientProtocolException; +import org.junit.Test; + +public class HttpClientProcessorImplTest { + + @Test + public void testMultiClient() throws ClientProtocolException, IOException + { + HttpClientProcessorImpl processor = new HttpClientProcessorImpl(); + processor.setHttpClientBuilder(HttpClientUtils.createHttpClientBuilder()); + } +} -- cgit 1.2.3-korg