summaryrefslogtreecommitdiffstats
path: root/catalog-fe/src/test/java/org/openecomp/sdc/fe/client/BackendClientTest.java
blob: d851899f59bf7b1a81cd6e59a9bc487285957261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package org.openecomp.sdc.fe.client;

import java.util.List;

import javax.annotation.Generated;
import javax.net.ssl.HostnameVerifier;
import javax.ws.rs.container.AsyncResponse;

import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.eclipse.jetty.http.HttpGenerator.ResponseInfo;
import org.junit.Test;
import org.openecomp.sdc.fe.impl.HttpRequestInfo;


public class BackendClientTest {

	private BackendClient createTestSubject() {
		return new BackendClient("", "", "");
	}

	
	@Test
	public void testGetHostnameVerifier() throws Exception {
		BackendClient testSubject;
		HostnameVerifier result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getHostnameVerifier();
	}


}