aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java b/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java
new file mode 100644
index 000000000..b94d21b91
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestIntTest.java
@@ -0,0 +1,22 @@
+package org.onap.vid.policy;
+
+import org.junit.Test;
+import org.onap.vid.policy.rest.RequestDetails;
+
+public class PolicyRestIntTest {
+
+ private PolicyRestInt createTestSubject() {
+ return new PolicyRestInt();
+ }
+
+ @Test
+ public void testLogRequest() throws Exception {
+ PolicyRestInt testSubject;
+ RequestDetails r = null;
+
+ // test 1
+ testSubject = createTestSubject();
+ r = null;
+ testSubject.logRequest(r);
+ }
+} \ No newline at end of file