package org.openecomp.sdc.be.datatypes.elements; import java.util.List; import java.util.Map; import org.junit.Test; public class MapComponentInstanceExternalRefsTest { private MapComponentInstanceExternalRefs createTestSubject() { return new MapComponentInstanceExternalRefs(); } @Test public void testGetComponentInstanceExternalRefs() throws Exception { MapComponentInstanceExternalRefs testSubject; Map> result; // default test testSubject = createTestSubject(); result = testSubject.getComponentInstanceExternalRefs(); } @Test public void testGetExternalRefsByObjectType() throws Exception { MapComponentInstanceExternalRefs testSubject; String objectType = ""; List result; // default test testSubject = createTestSubject(); result = testSubject.getExternalRefsByObjectType(objectType); } @Test public void testSetComponentInstanceExternalRefs() throws Exception { MapComponentInstanceExternalRefs testSubject; Map> componentInstanceExternalRefs = null; // default test testSubject = createTestSubject(); testSubject.setComponentInstanceExternalRefs(componentInstanceExternalRefs); } @Test public void testAddExternalRef() throws Exception { MapComponentInstanceExternalRefs testSubject; String objectType = ""; String ref = ""; boolean result; // default test testSubject = createTestSubject(); result = testSubject.addExternalRef(objectType, ref); } @Test public void testDeleteExternalRef() throws Exception { MapComponentInstanceExternalRefs testSubject; String objectType = ""; String ref = ""; boolean result; // default test testSubject = createTestSubject(); result = testSubject.deleteExternalRef(objectType, ref); } @Test public void testReplaceExternalRef() throws Exception { MapComponentInstanceExternalRefs testSubject; String objectType = ""; String oldRef = ""; String newRef = ""; boolean result; // default test testSubject = createTestSubject(); result = testSubject.replaceExternalRef(objectType, oldRef, newRef); } }