summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java b/vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java
new file mode 100644
index 000000000..e1836df54
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/category/CategoryParameterOptionRepTest.java
@@ -0,0 +1,50 @@
+package org.onap.vid.category;
+
+import org.junit.Test;
+
+public class CategoryParameterOptionRepTest {
+
+ private CategoryParameterOptionRep createTestSubject() {
+ return new CategoryParameterOptionRep();
+ }
+
+ @Test
+ public void testGetId() throws Exception {
+ CategoryParameterOptionRep testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getId();
+ }
+
+ @Test
+ public void testSetId() throws Exception {
+ CategoryParameterOptionRep testSubject;
+ String id = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setId(id);
+ }
+
+ @Test
+ public void testGetName() throws Exception {
+ CategoryParameterOptionRep testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getName();
+ }
+
+ @Test
+ public void testSetName() throws Exception {
+ CategoryParameterOptionRep testSubject;
+ String name = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setName(name);
+ }
+} \ No newline at end of file