aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestInterfaceTest.java
blob: 0e74c7d83f40f3507e4ee4b5f7fb447eddcf483f (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
package org.onap.vid.policy;

import org.apache.poi.hssf.record.formula.functions.T;
import org.json.simple.JSONObject;
import org.junit.Test;
import org.onap.vid.policy.rest.RequestDetails;

public class PolicyRestInterfaceTest {

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

    @Test
    public void testLogRequest() throws Exception {
        PolicyRestInterface testSubject;
        RequestDetails r = null;

        // default test
        testSubject = createTestSubject();
        testSubject.logRequest(r);
    }

    /*@Test
    public void testInitRestClient() throws Exception {
        PolicyRestInterface testSubject;

        // default test
        testSubject = createTestSubject();
        testSubject.initRestClient();
    }*/

}