Skip to main content
summaryrefslogtreecommitdiffstats
blob: b3ed7fe81e70de4735a5ccd3929d7c35e7d0fb4b (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package org.eclipse.papyrus.sysml.diagram.blockdefinition.tests.creation;

import static org.eclipse.papyrus.sysml.diagram.blockdefinition.tests.utils.EditorUtils.getDiagramView;
import static org.eclipse.papyrus.sysml.diagram.blockdefinition.tests.utils.TestUtils.createNodeFromPalette;

import org.eclipse.papyrus.sysml.diagram.blockdefinition.tests.AbstractTest;
import org.junit.Test;

/**
 * JUnit tests for element creation test (via palette tools) in diagram.
 */
public class TestNodeCreationOnDiagram extends AbstractTest {

	@Test
	public void testCreationActorInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.actor", getDiagramView(), true);
	}

	@Test
	public void testCreationBlockInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.block", getDiagramView(), true);
	}

	@Test
	public void testCreationCommentInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.comment", getDiagramView(), true);
	}

	@Test
	public void testCreationConstraintBlockInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.constraintblock", getDiagramView(), true);
	}

	@Test
	public void testCreationConstraintInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.constraint", getDiagramView(), true);
	}

	@Test
	public void testCreationConstraintPropertyInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.constraintproperty", getDiagramView(), false);
	}

	@Test
	public void testCreationDataTypeInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.datatype", getDiagramView(), true);
	}

	@Test
	public void testCreationDimensionInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.dimension", getDiagramView(), true);
	}

	@Test
	public void testCreationEnumerationInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.enumeration", getDiagramView(), true);
	}

	@Test
	public void testCreationEnumerationLiteralInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.enumerationliteral", getDiagramView(), false);
	}

	@Test
	public void testCreationFlowPortInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.flowport", getDiagramView(), false);
	}

	@Test
	public void testCreationFlowPropertyInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.flowproperty", getDiagramView(), false);
	}

	@Test
	public void testCreationFlowSpecificationInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.flowspecification", getDiagramView(), true);
	}

	@Test
	public void testCreationInstanceSpecificationInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.instancespecification", getDiagramView(), true);
	}

	@Test
	public void testCreationInterfaceInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.interface", getDiagramView(), true);
	}

	@Test
	public void testCreationModelInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.model", getDiagramView(), true);
	}

	@Test
	public void testCreationOperationInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.operation", getDiagramView(), false);
	}

	@Test
	public void testCreationPackageInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.package", getDiagramView(), true);
	}

	@Test
	public void testCreationPartInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.part", getDiagramView(), false);
	}

	@Test
	public void testCreationPortInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.port", getDiagramView(), false);
	}

	@Test
	public void testCreationPrimitiveTypeInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.primitivetype", getDiagramView(), true);
	}

	@Test
	public void testCreationPropertyInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.property", getDiagramView(), false);
	}

	@Test
	public void testCreationReceptionInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.reception", getDiagramView(), false);
	}

	@Test
	public void testCreationReferenceInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.reference", getDiagramView(), false);
	}

	@Test
	public void testCreationSignalInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.signal", getDiagramView(), true);
	}

	@Test
	public void testCreationSlotInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.slot", getDiagramView(), false);
	}

	@Test
	public void testCreationUnitInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.unit", getDiagramView(), true);
	}

	@Test
	public void testCreationValueInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.value", getDiagramView(), false);
	}

	@Test
	public void testCreationValueTypeInDiagram() throws Exception {
		createNodeFromPalette("blockdefinition.tool.valuetype", getDiagramView(), true);
	}
}

Back to the top