summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelatedToPropertyTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelatedToPropertyTest.java')
-rw-r--r--vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelatedToPropertyTest.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelatedToPropertyTest.java b/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelatedToPropertyTest.java
deleted file mode 100644
index 08a87173..00000000
--- a/vid-app-common/src/test/java/org/openecomp/vid/aai/model/RelatedToPropertyTest.java
+++ /dev/null
@@ -1,55 +0,0 @@
-package org.openecomp.vid.aai.model;
-
-import org.junit.Test;
-
-
-public class RelatedToPropertyTest {
-
- private RelatedToProperty createTestSubject() {
- return new RelatedToProperty();
- }
-
-
- @Test
- public void testGetPropertyKey() throws Exception {
- RelatedToProperty testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getPropertyKey();
- }
-
-
- @Test
- public void testSetPropertyKey() throws Exception {
- RelatedToProperty testSubject;
- String propertyKey = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setPropertyKey(propertyKey);
- }
-
-
- @Test
- public void testGetPropertyValue() throws Exception {
- RelatedToProperty testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getPropertyValue();
- }
-
-
- @Test
- public void testSetPropertyValue() throws Exception {
- RelatedToProperty testSubject;
- String propertyValue = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setPropertyValue(propertyValue);
- }
-} \ No newline at end of file