aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2019-01-10 12:42:59 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-10 12:42:59 +0000
commit659874df80409170e57b6dd6197eb3a81eb3468e (patch)
tree08e79fd57aa0ed299586fd88f69f87a5a2f5ded1 /vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java
parent143784a849ece4fc35cc290e33f829b72bf1fc79 (diff)
parent6ad41e3ccd398a2721f41ad61c80b7bb03f7d127 (diff)
Merge "Merge from ECOMP's repository"
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java70
1 files changed, 0 insertions, 70 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java b/vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java
deleted file mode 100644
index 4e2676c6a..000000000
--- a/vid-app-common/src/test/java/org/onap/vid/policy/PolicyResponseWrapperTest.java
+++ /dev/null
@@ -1,70 +0,0 @@
-package org.onap.vid.policy;
-
-import org.junit.Test;
-
-public class PolicyResponseWrapperTest {
-
- private PolicyResponseWrapper createTestSubject() {
- return new PolicyResponseWrapper();
- }
-
- @Test
- public void testGetEntity() throws Exception {
- PolicyResponseWrapper testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getEntity();
- }
-
- @Test
- public void testGetStatus() throws Exception {
- PolicyResponseWrapper testSubject;
- int result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getStatus();
- }
-
- @Test
- public void testSetStatus() throws Exception {
- PolicyResponseWrapper testSubject;
- int v = 0;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setStatus(v);
- }
-
- @Test
- public void testSetEntity() throws Exception {
- PolicyResponseWrapper testSubject;
- String v = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setEntity(v);
- }
-
- @Test
- public void testToString() throws Exception {
- PolicyResponseWrapper testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.toString();
- }
-
- @Test
- public void testGetResponse() throws Exception {
- PolicyResponseWrapper testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getResponse();
- }
-} \ No newline at end of file