Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / client / HttpBasicClientTest.java
1 package org.onap.vid.client;
2
3 import org.junit.Test;
4
5 public class HttpBasicClientTest {
6
7     private HttpBasicClient createTestSubject() {
8         return new HttpBasicClient();
9     }
10
11     @Test
12     public void testGetClient() throws Exception {
13         // default test
14         HttpBasicClient.getClient();
15     }
16 }