Upgrade sonar plugin
[vid.git] / vid-app-common / src / test / java / org / openecomp / vid / policy / PolicyRestInterfaceTest.java
1 package org.openecomp.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.openecomp.vid.policy.rest.RequestDetails;
7
8 public class PolicyRestInterfaceTest {
9
10         private PolicyRestInterface createTestSubject() {
11                 return new PolicyRestInterface();
12         }
13
14
15         @Test
16         public void testLogRequest() throws Exception {
17                 PolicyRestInterface testSubject;
18                 RequestDetails r = null;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 testSubject.logRequest(r);
23         }
24 }