blob: 823a00b14e85fa4390a63a626fa8ed06dff287a4 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 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:
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.interoperability.rpy.sysml.tests.tests;
import org.eclipse.papyrus.interoperability.rpy.sysml.tests.Activator;
import org.eclipse.papyrus.interoperability.rpy.tests.tests.AbstractImportRpyModelTests;
import org.eclipse.papyrus.junit.utils.rules.PluginResource;
import org.junit.Before;
/**
*
* @author VL222926
*
*
*
*/
@PluginResource("resources/AssociationLabelInBDD_test/expected_papyrus/AssociationLabelInBDD.di") // the name of the expected model must be the same than the name of the Rpy project
public class ImportSysML11_AssociationLabelInBDD_Test extends AbstractImportRpyModelTests {
/**
* the name of the Rpy File
*/
public static final String RPY_MODEL_NAME = "AssociationLabelInBDD";// $NON-NLS-0$
/**
* the name of the project created to execute the tests
*/
public static final String PROJECT_NAME = "org.eclipse.papyrus.sysml.rpy.testImport"; // $NON-NLS-0$
private static final String SOURCE_PATH = "resources/AssociationLabelInBDD_test/"; // $NON-NLS-0$
/**
*
* @throws Exception
*/
@Before
public void initTest() throws Exception {
super.initTest(PROJECT_NAME, RPY_MODEL_NAME, SOURCE_PATH, Activator.getDefault().getBundle());
}
}