aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/EntryDataTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/EntryDataTest.java')
-rw-r--r--catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/EntryDataTest.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/EntryDataTest.java b/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/EntryDataTest.java
new file mode 100644
index 0000000000..66c8db9fd0
--- /dev/null
+++ b/catalog-dao/src/test/java/org/openecomp/sdc/be/resources/data/EntryDataTest.java
@@ -0,0 +1,41 @@
+package org.openecomp.sdc.be.resources.data;
+
+import org.junit.Test;
+
+public class EntryDataTest {
+
+ private EntryData createTestSubject() {
+ return new EntryData(new Object(), new Object());
+ }
+
+ @Test
+ public void testGetKey() throws Exception {
+ EntryData testSubject;
+ Object result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getKey();
+ }
+
+ @Test
+ public void testGetValue() throws Exception {
+ EntryData testSubject;
+ Object result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getValue();
+ }
+
+ @Test
+ public void testSetValue() throws Exception {
+ EntryData testSubject;
+ Object value = null;
+ Object result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.setValue(value);
+ }
+} \ No newline at end of file