aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/util/HttpsAuthClientTest.java
blob: 88d53c03f7b3111dca63c8c41617ef828cfb64cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.vid.aai.util;

import org.junit.Test;

public class HttpsAuthClientTest {

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

    @Test
    public void testGetClient() throws Exception {
        String certFilePath = "";

        // default test
        HttpsAuthClient.getClient(certFilePath);
    }
}