Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / policy / PolicyRestInterfaceTest.java
1 package org.onap.vid.policy;
2
3 import org.apache.poi.hssf.record.formula.functions.T;
4 import org.json.simple.JSONObject;
5 import org.junit.Test;
6 import org.onap.vid.policy.rest.RequestDetails;
7
8 public class PolicyRestInterfaceTest {
9
10     private PolicyRestInterface createTestSubject() {
11         return new PolicyRestInterface();
12     }
13
14     @Test
15     public void testLogRequest() throws Exception {
16         PolicyRestInterface testSubject;
17         RequestDetails r = null;
18
19         // default test
20         testSubject = createTestSubject();
21         testSubject.logRequest(r);
22     }
23
24     /*@Test
25     public void testInitRestClient() throws Exception {
26         PolicyRestInterface testSubject;
27
28         // default test
29         testSubject = createTestSubject();
30         testSubject.initRestClient();
31     }*/
32
33 }