new unit tests for sdc-dao
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / resources / data / EntryDataTest.java
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 (file)
index 0000000..66c8db9
--- /dev/null
@@ -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