org.onap migration
[vid.git] / vid-app-common / src / test / java / org / onap / vid / policy / PolicyRestIntTest.java
1 package org.onap.vid.policy;
2
3 import org.junit.Test;
4 import org.onap.vid.policy.rest.RequestDetails;
5
6 public class PolicyRestIntTest {
7
8         private PolicyRestInt createTestSubject() {
9                 return new PolicyRestInt();
10         }
11
12         @Test
13         public void testLogRequest() throws Exception {
14                 PolicyRestInt testSubject;
15                 RequestDetails r = null;
16
17                 // test 1
18                 testSubject = createTestSubject();
19                 r = null;
20                 testSubject.logRequest(r);
21         }
22 }