Skip to main content
summaryrefslogtreecommitdiffstats
blob: eb03b75981037b8d37265aa3a809c97f97e21774 (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
/**
 */
package org.eclipse.osbp.ecview.semantic.uimodel.tests;

import junit.framework.TestCase;

import org.eclipse.osbp.ecview.semantic.uimodel.UiBindingExpression;

/**
 * <!-- begin-user-doc -->
 * A test case for the model object '<em><b>Ui Binding Expression</b></em>'.
 * <!-- end-user-doc -->
 * @generated
 */
public abstract class UiBindingExpressionTest extends TestCase {

	/**
	 * The fixture for this Ui Binding Expression test case.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected UiBindingExpression fixture = null;

	/**
	 * Constructs a new Ui Binding Expression test case with the given name.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public UiBindingExpressionTest(String name) {
		super(name);
	}

	/**
	 * Sets the fixture for this Ui Binding Expression test case.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected void setFixture(UiBindingExpression fixture) {
		this.fixture = fixture;
	}

	/**
	 * Returns the fixture for this Ui Binding Expression test case.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected UiBindingExpression getFixture() {
		return fixture;
	}

} //UiBindingExpressionTest

Back to the top