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