Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e3e6154241dac0a02fb68e4a0817dc7564b20aba (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
/**
 */
package org.eclipse.papyrus.layers.stackmodel.layers.tests;

import org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator;

/**
 * <!-- begin-user-doc -->
 * A test case for the model object '<em><b>Abstract Layer Operator</b></em>'.
 * <!-- end-user-doc -->
 * <p>
 * The following operations are tested:
 * <ul>
 *   <li>{@link org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator#isDescriptorSet() <em>Is Descriptor Set</em>}</li>
 *   <li>{@link org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator#resetDescriptor() <em>Reset Descriptor</em>}</li>
 * </ul>
 * </p>
 * @generated
 */
public abstract class AbstractLayerOperatorTest extends LayerOperatorTest {

	/**
	 * Constructs a new Abstract Layer Operator test case with the given name.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public AbstractLayerOperatorTest(String name) {
		super(name);
	}

	/**
	 * Returns the fixture for this Abstract Layer Operator test case.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	protected AbstractLayerOperator getFixture() {
		return (AbstractLayerOperator)fixture;
	}

	/**
	 * Tests the '{@link org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator#isDescriptorSet() <em>Is Descriptor Set</em>}' operation.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator#isDescriptorSet()
	 * @generated
	 */
	public void testIsDescriptorSet() {
		// TODO: implement this operation test method
		// Ensure that you remove @generated or mark it @generated NOT
		fail();
	}

	/**
	 * Tests the '{@link org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator#resetDescriptor() <em>Reset Descriptor</em>}' operation.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see org.eclipse.papyrus.layers.stackmodel.layers.AbstractLayerOperator#resetDescriptor()
	 * @generated
	 */
	public void testResetDescriptor() {
		// TODO: implement this operation test method
		// Ensure that you remove @generated or mark it @generated NOT
		fail();
	}

} //AbstractLayerOperatorTest

Back to the top