aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java121
1 files changed, 5 insertions, 116 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java b/vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java
index 99ee59584..a2eb474b0 100644
--- a/vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java
+++ b/vid-app-common/src/test/java/org/onap/vid/aai/model/LogicalLinkResponseTest.java
@@ -2,6 +2,9 @@ package org.onap.vid.aai.model;
import org.junit.Test;
+import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
+import static org.hamcrest.MatcherAssert.assertThat;
+
public class LogicalLinkResponseTest {
private LogicalLinkResponse createTestSubject() {
@@ -9,122 +12,8 @@ public class LogicalLinkResponseTest {
}
@Test
- public void testGetLinkName() throws Exception {
- LogicalLinkResponse testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLinkName();
- }
-
- @Test
- public void testSetLinkName() throws Exception {
- LogicalLinkResponse testSubject;
- String linkName = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLinkName(linkName);
- }
-
- @Test
- public void testGetInMaint() throws Exception {
- LogicalLinkResponse testSubject;
- Boolean result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getInMaint();
+ public void shouldHaveValidGettersAndSetters(){
+ assertThat(LogicalLinkResponse.class, hasValidGettersAndSetters());
}
- @Test
- public void testSetInMaint() throws Exception {
- LogicalLinkResponse testSubject;
- Boolean inMaint = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setInMaint(inMaint);
- }
-
- @Test
- public void testGetLinkType() throws Exception {
- LogicalLinkResponse testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getLinkType();
- }
-
- @Test
- public void testSetLinkType() throws Exception {
- LogicalLinkResponse testSubject;
- String linkType = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setLinkType(linkType);
- }
-
- @Test
- public void testGetResourceVersion() throws Exception {
- LogicalLinkResponse testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getResourceVersion();
- }
-
- @Test
- public void testSetResourceVersion() throws Exception {
- LogicalLinkResponse testSubject;
- String resourceVersion = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setResourceVersion(resourceVersion);
- }
-
- @Test
- public void testGetPurpose() throws Exception {
- LogicalLinkResponse testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getPurpose();
- }
-
- @Test
- public void testSetPurpose() throws Exception {
- LogicalLinkResponse testSubject;
- String purpose = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setPurpose(purpose);
- }
-
- @Test
- public void testGetRelationshipList() throws Exception {
- LogicalLinkResponse testSubject;
- RelationshipList result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getRelationshipList();
- }
-
- @Test
- public void testSetRelationshipList() throws Exception {
- LogicalLinkResponse testSubject;
- RelationshipList relationshipList = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setRelationshipList(relationshipList);
- }
} \ No newline at end of file