summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/client/HttpBasicClientTest.java
blob: 621791121bd7297dce01956dec3024f49322482b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.vid.client;

import org.junit.Test;

public class HttpBasicClientTest {

    private HttpBasicClient createTestSubject() {
        return new HttpBasicClient();
    }

    @Test
    public void testGetClient() throws Exception {
        // default test
        HttpBasicClient.getClient();
    }
}