summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelationshipDataTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelationshipDataTest.java')
-rw-r--r--vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelationshipDataTest.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelationshipDataTest.java b/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelationshipDataTest.java
deleted file mode 100644
index 4df27ccd..00000000
--- a/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelationshipDataTest.java
+++ /dev/null
@@ -1,55 +0,0 @@
-package org.openecomp.vid.aai.model;
-
-import org.junit.Test;
-
-
-public class RelationshipDataTest {
-
- private RelationshipData createTestSubject() {
- return new RelationshipData();
- }
-
-
- @Test
- public void testGetRelationshipKey() throws Exception {
- RelationshipData testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getRelationshipKey();
- }
-
-
- @Test
- public void testSetRelationshipKey() throws Exception {
- RelationshipData testSubject;
- String relationshipKey = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setRelationshipKey(relationshipKey);
- }
-
-
- @Test
- public void testGetRelationshipValue() throws Exception {
- RelationshipData testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getRelationshipValue();
- }
-
-
- @Test
- public void testSetRelationshipValue() throws Exception {
- RelationshipData testSubject;
- String relationshipValue = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setRelationshipValue(relationshipValue);
- }
-} \ No newline at end of file