blob: 5526e7d7e02989556264e17e67d25463bce2b4e3 [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 allocation table.
*/
@PluginResource("resources/ExpectedResult/AllocationTable/AllocationTable_converted.di") // the name of the expected model must be the same than the name of the old Papyrus project
public class ImportSysML11AllocationTableTest extends AbstractImportSysMLModelWithNotationTests {
/**
* The name of the Papyrus project to import.
*/
public static final String SYSML11_ALLOCATION_TABLE_MODEL_NAME = "AllocationTable";// $NON-NLS-0$
/**
* The name of the created project.
*/
public static final String PROJECT_NAME = "AllocationTable_testMigration"; // $NON-NLS-0$
/**
* The source path of the allocation table model folder.
*/
private static final String SOURCE_PATH = "resources/InitialModels/AllocationTable/"; // $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_ALLOCATION_TABLE_MODEL_NAME, SOURCE_PATH, Activator.getDefault().getBundle());
}
}