blob: f77d08c8c5ff45a9ebf23d8ce224cdb1d6e0690e [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST and others.
*
*
* 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:
* Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.interoperability.sysml14.sysml.tests.tests;
import org.eclipse.papyrus.interoperability.sysml14.sysml.tests.Activator;
import org.eclipse.papyrus.junit.utils.rules.PluginResource;
import org.junit.Before;
/**
* This allows to test the interoperability QvTo transformation from SysML1.1 to SysML1.4 for the requirement diagram.
*/
@PluginResource("resources/ExpectedResult/RequirementDiagram/RequirementDiagram_converted.di") // the name of the expected model must be the same than the name of the old Papyrus project
public class ImportSysML11RequirementDiagramTest extends AbstractImportSysMLModelWithNotationTests {
/**
* The name of the Papyrus project to import.
*/
public static final String SYSML11_REQUIREMENT_DIAGRAM_MODEL_NAME = "RequirementDiagram";// $NON-NLS-0$
/**
* The name of the created project.
*/
public static final String PROJECT_NAME = "RequirementDiagram_testMigration"; // $NON-NLS-0$
/**
* The source path of the requirement diagram model folder.
*/
private static final String SOURCE_PATH = "resources/InitialModels/RequirementDiagram/"; // $NON-NLS-0$
/**
* This allows to initialize the test.
*
* @throws Exception
* The caught exception.
*/
@Before
public void initTest() throws Exception {
super.initTest(PROJECT_NAME, SYSML11_REQUIREMENT_DIAGRAM_MODEL_NAME, SOURCE_PATH, Activator.getDefault().getBundle());
}
}