blob: 10766987e7c350d26797b2b1c8c7f4ec6b129375 [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/EnumerationInBDD_test/expected_papyrus/EnumerationInBDD.di") // the name of the expected model must be the same than the name of the Rpy project
public class ImportSysML11_EnumerationInBDD_Test extends AbstractImportRpyModelTests {
/**
* the name of the Rpy File
*/
public static final String RPY_MODEL_NAME = "EnumerationInBDD";// $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/EnumerationInBDD_test/"; // $NON-NLS-0$
/**
*
* @throws Exception
*/
@Before
public void initTest() throws Exception {
super.initTest(PROJECT_NAME, RPY_MODEL_NAME, SOURCE_PATH, Activator.getDefault().getBundle());
}
}