blob: 7371132d0f74e500ac2649baada601cd0117e4b5 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2012 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.internalblock.tests.creation.link.connector.encapsulated;
import org.eclipse.papyrus.sysml.diagram.internalblock.tests.utils.TestPrepareUtils;
import org.eclipse.uml2.uml.Element;
import org.eclipse.uml2.uml.UMLPackage;
import org.junit.BeforeClass;
/**
* JUnit tests for Link creation with specified source element (via palette tools).
*/
public abstract class AbstractLinkCreationFromElementTest extends org.eclipse.papyrus.sysml.diagram.internalblock.tests.creation.link.connector.AbstractLinkCreationFromElementTest {
@BeforeClass
public static void setPartBlockEncapsulated() throws Exception {
TestPrepareUtils.setBlockIsEncapsulated((Element)(partContainer1.getElement().eGet(UMLPackage.eINSTANCE.getTypedElement_Type())), true);
TestPrepareUtils.setBlockIsEncapsulated((Element)(partContainer2.getElement().eGet(UMLPackage.eINSTANCE.getTypedElement_Type())), true);
TestPrepareUtils.setBlockIsEncapsulated((Element)(nestedPartContainer1_1.getElement().eGet(UMLPackage.eINSTANCE.getTypedElement_Type())), true);
TestPrepareUtils.setBlockIsEncapsulated((Element)(nestedPartContainer2_1.getElement().eGet(UMLPackage.eINSTANCE.getTypedElement_Type())), true);
TestPrepareUtils.setBlockIsEncapsulated((Element)(nestedPartContainer1_2.getElement().eGet(UMLPackage.eINSTANCE.getTypedElement_Type())), true);
}
}