blob: 596eeb1ca89b90e4d03b5066f4bc5daac9a1bc06 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.interoperability.sysml16.sysml14.tests.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* Master test suite for this test fragment.
*/
@RunWith(Suite.class)
@SuiteClasses({
ImportSysML14SemanticTest.class,
ImportSysML14RequirementDiagramTest.class,
ImportSysML14InternalBlockDiagramTest.class,
ImportSysML14BlockDefinitionDiagramTest.class,
ImportSysML14ParametricDiagramTest.class,
ImportSysML14AllocationTableTest.class,
ImportSysML14RequirementTableTest.class,
ImportSysML14RequirementTreeTableTest.class
})
public class AllTests {
}