Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d6595f20d84c9ce8cb0f6ca61b255363c276c168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*****************************************************************************
 * Copyright (c) 2015 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:
 *   CEA LIST - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.uml.diagram.interactionoverview.tests.canonical;

import org.eclipse.gmf.tooling.runtime.update.DiagramUpdater;
import org.eclipse.papyrus.commands.ICreationCommand;
import org.eclipse.papyrus.junit.framework.classification.NotImplemented;
import org.eclipse.papyrus.uml.diagram.interactionoverview.InteractionOverviewDiagramCreateCommand;
import org.eclipse.papyrus.uml.diagram.interactionoverview.tests.IInteractionoverviewDiagramTestsConstants;

public class TestControlNodesInStructuredCompartments extends org.eclipse.papyrus.uml.diagram.activity.tests.canonical.TestControlNodesInStructuredActivityNodes {

	@Override
	public DiagramUpdater getDiagramUpdater() {
		return null;
	}

	@Override
	protected ICreationCommand getDiagramCommandCreation() {
		return new InteractionOverviewDiagramCreateCommand();
	}

	@Override
	protected String getProjectName() {
		return IInteractionoverviewDiagramTestsConstants.PROJECT_NAME;
	}

	@Override
	protected String getFileName() {
		return IInteractionoverviewDiagramTestsConstants.FILE_NAME;
	}
	
	@Override
	@NotImplemented("InteractionD does not have ability to create StructuralNode")
	public void testCreateInitialNodeInStructuralActivityNode() {
	}

	@Override
	@NotImplemented("InteractionD does not have ability to create ExpansionRegion")
	public void testCreateJoinNodeInExpansionRegion() {
	}
}

Back to the top