summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java
diff options
context:
space:
mode:
authorSonsino, Ofir (os0695) <os0695@intl.att.com>2018-03-18 16:06:37 +0200
committerSonsino, Ofir (os0695) <os0695@intl.att.com>2018-03-18 16:06:37 +0200
commit8fdf2dee7684f4911a58a2350626300af52b6e4d (patch)
tree656b4e847e097838f470a468c92aa7a1ebc282d6 /vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java
parentc9d63f49af5455f503ca63395121b7cd4d8c8c88 (diff)
Unit tests
Change-Id: I9ff2a916f09856e3a79d037a8815224ddb9e7a9b Issue-ID: VID-197 Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java b/vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java
new file mode 100644
index 000000000..c05db9b95
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/controller/test/TestAaiControllerTest.java
@@ -0,0 +1,27 @@
+package org.onap.vid.controller.test;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.junit.Test;
+
+public class TestAaiControllerTest {
+
+ private TestAaiController createTestSubject() {
+ return new TestAaiController();
+ }
+
+ @Test
+ public void testGetSubscriptionServiceTypeList() throws Exception {
+ TestAaiController testSubject;
+ String globalCustomerId = "";
+ HttpServletRequest request = null;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getSubscriptionServiceTypeList(globalCustomerId, request);
+ }
+
+
+} \ No newline at end of file