package org.onap.vid.mso.rest; import org.junit.Test; import org.onap.vid.mso.model.ModelInfo; import java.util.Map; public class RelatedInstanceTest { private RelatedInstance createTestSubject() { return new RelatedInstance(); } @Test public void testGetModelInfo() throws Exception { RelatedInstance testSubject; ModelInfo result; // default test testSubject = createTestSubject(); result = testSubject.getModelInfo(); } @Test public void testSetModelInfo() throws Exception { RelatedInstance testSubject; ModelInfo modelInfo = null; // default test testSubject = createTestSubject(); testSubject.setModelInfo(modelInfo); } @Test public void testToString() throws Exception { RelatedInstance testSubject; String result; // default test testSubject = createTestSubject(); result = testSubject.toString(); } @Test public void testGetAdditionalProperties() throws Exception { RelatedInstance testSubject; Map result; // default test testSubject = createTestSubject(); result = testSubject.getAdditionalProperties(); } @Test public void testSetAdditionalProperty() throws Exception { RelatedInstance testSubject; String name = ""; Object value = null; // default test testSubject = createTestSubject(); testSubject.setAdditionalProperty(name, value); } @Test public void testHashCode() throws Exception { RelatedInstance testSubject; int result; // default test testSubject = createTestSubject(); result = testSubject.hashCode(); } @Test public void testEquals() throws Exception { RelatedInstance testSubject; Object other = null; boolean result; // default test testSubject = createTestSubject(); result = testSubject.equals(other); } }