aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/asdc/beans
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/asdc/beans')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/asdc/beans/ResourceTest.java391
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/CapabilityTest.java124
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ConstraintTest.java221
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/PropertyTest.java18
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/RequirementTest.java92
5 files changed, 0 insertions, 846 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/ResourceTest.java b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/ResourceTest.java
deleted file mode 100644
index af42409cd..000000000
--- a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/ResourceTest.java
+++ /dev/null
@@ -1,391 +0,0 @@
-package org.onap.vid.asdc.beans;
-
-import java.util.Collection;
-
-import org.junit.Test;
-import org.onap.vid.asdc.beans.Resource.LifecycleState;
-import org.onap.vid.asdc.beans.Resource.Type;
-
-
-public class ResourceTest {
-
- private Resource createTestSubject() {
- return new Resource();
- }
-
-
- @Test
- public void testGetUuid() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getUuid();
- }
-
-
- @Test
- public void testGetInvariantUUID() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getInvariantUUID();
- }
-
-
- @Test
- public void testGetName() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getName();
- }
-
-
- @Test
- public void testGetDescription() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getDescription();
- }
-
-
- @Test
- public void testGetVersion() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getVersion();
- }
-
-
- @Test
- public void testGetToscaModelURL() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getToscaModelURL();
- }
-
-
- @Test
- public void testGetCategory() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getCategory();
- }
-
-
- @Test
- public void testGetSubCategory() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getSubCategory();
- }
-
-
- @Test
- public void testGetResourceType() throws Exception {
- Resource testSubject;
- Type result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getResourceType();
- }
-
-
- @Test
- public void testGetLifecycleState() throws Exception {
- Resource testSubject;
- LifecycleState result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLifecycleState();
- }
-
-
- @Test
- public void testGetLastUpdaterUserId() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLastUpdaterUserId();
- }
-
-
- @Test
- public void testGetLastUpdaterFullName() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLastUpdaterFullName();
- }
-
-
- @Test
- public void testGetToscaModel() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getToscaModel();
- }
-
-
- @Test
- public void testGetToscaResourceName() throws Exception {
- Resource testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getToscaResourceName();
- }
-
-
- @Test
- public void testGetArtifacts() throws Exception {
- Resource testSubject;
- Collection<Artifact> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getArtifacts();
- }
-
-
- @Test
- public void testGetResources() throws Exception {
- Resource testSubject;
- Collection<SubResource> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getResources();
- }
-
-
- @Test
- public void testSetUuid() throws Exception {
- Resource testSubject;
- String uuid = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setUuid(uuid);
- }
-
-
- @Test
- public void testSetInvariantUUID() throws Exception {
- Resource testSubject;
- String invariantUUID = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setInvariantUUID(invariantUUID);
- }
-
-
- @Test
- public void testSetName() throws Exception {
- Resource testSubject;
- String name = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setName(name);
- }
-
-
- @Test
- public void testSetDescription() throws Exception {
- Resource testSubject;
- String description = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setDescription(description);
- }
-
-
- @Test
- public void testSetVersion() throws Exception {
- Resource testSubject;
- String version = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setVersion(version);
- }
-
-
- @Test
- public void testSetToscaModelURL() throws Exception {
- Resource testSubject;
- String toscaModelURL = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setToscaModelURL(toscaModelURL);
- }
-
-
- @Test
- public void testSetCategory() throws Exception {
- Resource testSubject;
- String category = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setCategory(category);
- }
-
-
- @Test
- public void testSetSubCategory() throws Exception {
- Resource testSubject;
- String subCategory = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setSubCategory(subCategory);
- }
-
-
- @Test
- public void testSetResourceType() throws Exception {
- Resource testSubject;
- Type resourceType = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setResourceType(resourceType);
- }
-
-
- @Test
- public void testSetLifecycleState() throws Exception {
- Resource testSubject;
- LifecycleState lifecycleState = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLifecycleState(lifecycleState);
- }
-
-
- @Test
- public void testSetLastUpdaterUserId() throws Exception {
- Resource testSubject;
- String lastUpdaterUserId = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLastUpdaterUserId(lastUpdaterUserId);
- }
-
-
- @Test
- public void testSetLastUpdaterFullName() throws Exception {
- Resource testSubject;
- String lastUpdaterFullName = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLastUpdaterFullName(lastUpdaterFullName);
- }
-
-
- @Test
- public void testSetToscaModel() throws Exception {
- Resource testSubject;
- String toscaModel = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setToscaModel(toscaModel);
- }
-
-
- @Test
- public void testSetToscaResourceName() throws Exception {
- Resource testSubject;
- String toscaResourceName = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setToscaResourceName(toscaResourceName);
- }
-
-
- @Test
- public void testSetArtifacts() throws Exception {
- Resource testSubject;
- Collection<Artifact> artifacts = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setArtifacts(artifacts);
- }
-
-
- @Test
- public void testSetResources() throws Exception {
- Resource testSubject;
- Collection<SubResource> resources = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setResources(resources);
- }
-
-
- @Test
- public void testHashCode() throws Exception {
- Resource testSubject;
- int result;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setUuid("cb49608f-5a24-4789-b0f7-2595473cb997");
- result = testSubject.hashCode();
- }
-
-
- @Test
- public void testEquals() throws Exception {
- Resource testSubject;
- Object o = null;
- boolean result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.equals(o);
- }
-} \ No newline at end of file
diff --git a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/CapabilityTest.java b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/CapabilityTest.java
deleted file mode 100644
index 7609e36d1..000000000
--- a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/CapabilityTest.java
+++ /dev/null
@@ -1,124 +0,0 @@
-package org.onap.vid.asdc.beans.tosca;
-
-import java.util.Collection;
-import java.util.Map;
-
-import org.junit.Test;
-
-
-public class CapabilityTest {
-
- private Capability createTestSubject() {
- return new Capability();
- }
-
-
- @Test
- public void testGetType() throws Exception {
- Capability testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getType();
- }
-
-
- @Test
- public void testGetDescription() throws Exception {
- Capability testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getDescription();
- }
-
-
- @Test
- public void testGetOccurrences() throws Exception {
- Capability testSubject;
- Collection<String> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getOccurrences();
- }
-
-
- @Test
- public void testGetProperties() throws Exception {
- Capability testSubject;
- Map<String, Property> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getProperties();
- }
-
-
- @Test
- public void testGetValid_source_types() throws Exception {
- Capability testSubject;
- Collection<String> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getValid_source_types();
- }
-
-
- @Test
- public void testSetType() throws Exception {
- Capability testSubject;
- String type = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setType(type);
- }
-
-
- @Test
- public void testSetDescription() throws Exception {
- Capability testSubject;
- String description = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setDescription(description);
- }
-
-
- @Test
- public void testSetOccurrences() throws Exception {
- Capability testSubject;
- Collection<String> occurrences = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setOccurrences(occurrences);
- }
-
-
- @Test
- public void testSetProperties() throws Exception {
- Capability testSubject;
- Map<String, Property> properties = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setProperties(properties);
- }
-
-
- @Test
- public void testSetValid_source_types() throws Exception {
- Capability testSubject;
- Collection<String> valid_source_types = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setValid_source_types(valid_source_types);
- }
-} \ No newline at end of file
diff --git a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ConstraintTest.java b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ConstraintTest.java
deleted file mode 100644
index ebba7d172..000000000
--- a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/ConstraintTest.java
+++ /dev/null
@@ -1,221 +0,0 @@
-package org.onap.vid.asdc.beans.tosca;
-
-import java.util.List;
-
-import org.junit.Test;
-
-public class ConstraintTest {
-
- private Constraint createTestSubject() {
- return new Constraint();
- }
-
-
- @Test
- public void testGetvalid_values() throws Exception {
- Constraint testSubject;
- List<Object> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getvalid_values();
- }
-
-
- @Test
- public void testGetEqual() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getEqual();
- }
-
-
- @Test
- public void testGetGreater_than() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getGreater_than();
- }
-
-
- @Test
- public void testGetGreater_or_equal() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getGreater_or_equal();
- }
-
-
- @Test
- public void testGetLess_than() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLess_than();
- }
-
-
- @Test
- public void testGetLess_or_equal() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLess_or_equal();
- }
-
-
- @Test
- public void testGetIn_range() throws Exception {
- Constraint testSubject;
- List<Object> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getIn_range();
- }
-
-
- @Test
- public void testGetLength() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLength();
- }
-
-
- @Test
- public void testGetMin_length() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getMin_length();
- }
-
-
- @Test
- public void testGetMax_length() throws Exception {
- Constraint testSubject;
- Object result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getMax_length();
- }
-
-
- @Test
- public void testSetvalid_values() throws Exception {
- Constraint testSubject;
- List<Object> vlist = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setvalid_values(vlist);
- }
-
-
- @Test
- public void testSetEqual() throws Exception {
- Constraint testSubject;
- Object e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setEqual(e);
- }
-
-
- @Test
- public void testSetGreater_than() throws Exception {
- Constraint testSubject;
- Object e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setGreater_than(e);
- }
-
-
- @Test
- public void testSetLess_than() throws Exception {
- Constraint testSubject;
- Object e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLess_than(e);
- }
-
-
- @Test
- public void testSetIn_range() throws Exception {
- Constraint testSubject;
- List<Object> e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setIn_range(e);
- }
-
-
- @Test
- public void testSetLength() throws Exception {
- Constraint testSubject;
- Object e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLength(e);
- }
-
-
- @Test
- public void testSetMin_length() throws Exception {
- Constraint testSubject;
- Object e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setMin_length(e);
- }
-
-
- @Test
- public void testSetMax_length() throws Exception {
- Constraint testSubject;
- Object e = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setMax_length(e);
- }
-
-
- @Test
- public void testToString() throws Exception {
- Constraint testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.toString();
- }
-} \ No newline at end of file
diff --git a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/PropertyTest.java b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/PropertyTest.java
index e638b518d..cb68eac92 100644
--- a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/PropertyTest.java
+++ b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/PropertyTest.java
@@ -38,15 +38,6 @@ public class PropertyTest {
result = testSubject.getEntry_schema();
}
- @Test
- public void testGet_default() throws Exception {
- Property testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.get_default();
- }
@Test
public void testSetType() throws Exception {
@@ -78,15 +69,6 @@ public class PropertyTest {
testSubject.setEntry_schema(entry_schema);
}
- @Test
- public void testSet_default() throws Exception {
- Property testSubject;
- String _default = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.set_default(_default);
- }
@Test
public void testGetDefault() throws Exception {
diff --git a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/RequirementTest.java b/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/RequirementTest.java
deleted file mode 100644
index ae5ff5293..000000000
--- a/vid-app-common/src/test/java/org/onap/vid/asdc/beans/tosca/RequirementTest.java
+++ /dev/null
@@ -1,92 +0,0 @@
-package org.onap.vid.asdc.beans.tosca;
-
-import java.util.Collection;
-
-import org.junit.Test;
-
-public class RequirementTest {
-
- private Requirement createTestSubject() {
- return new Requirement();
- }
-
- @Test
- public void testGetOccurrences() throws Exception {
- Requirement testSubject;
- Collection<String> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getOccurrences();
- }
-
- @Test
- public void testGetCapability() throws Exception {
- Requirement testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getCapability();
- }
-
- @Test
- public void testGetNode() throws Exception {
- Requirement testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getNode();
- }
-
- @Test
- public void testGetRelationship() throws Exception {
- Requirement testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getRelationship();
- }
-
- @Test
- public void testSetOccurrences() throws Exception {
- Requirement testSubject;
- Collection<String> occurrences = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setOccurrences(occurrences);
- }
-
- @Test
- public void testSetCapability() throws Exception {
- Requirement testSubject;
- String capability = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setCapability(capability);
- }
-
- @Test
- public void testSetNode() throws Exception {
- Requirement testSubject;
- String node = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setNode(node);
- }
-
- @Test
- public void testSetRelationship() throws Exception {
- Requirement testSubject;
- String relationship = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setRelationship(relationship);
- }
-} \ No newline at end of file