blob: 5de8976ed2e48cf7895b81e2ed1d61ac3065481a [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2012 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:
*
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.internalblock.tests.suites;
import org.eclipse.papyrus.sysml.diagram.internalblock.tests.dnd.altdrop.DropNestedPartOnPartTest;
import org.eclipse.papyrus.sysml.diagram.internalblock.tests.dnd.altdrop.TestTypeDropOnBlock;
import org.eclipse.papyrus.sysml.diagram.internalblock.tests.dnd.altdrop.TestTypeDropOnTypedElement;
import org.eclipse.papyrus.sysml.diagram.internalblock.tests.dnd.altdrop.TestTypeDropOnTypedElementCompartment;
import org.junit.runner.RunWith;
import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(ClassificationSuite.class)
@SuiteClasses({
TestTypeDropOnBlock.class,
TestTypeDropOnTypedElement.class,
TestTypeDropOnTypedElementCompartment.class,
DropNestedPartOnPartTest.class
})
public class AllAlternateDropTests {
}