blob: a518845bf19e77ced3c2cfca514f66774d527068 [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.semantic.uimodel.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.semantic.uimodel.UiCommandBindableDef;
import org.eclipse.osbp.ecview.semantic.uimodel.UiModelFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Ui Command Bindable Def</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class UiCommandBindableDefTest extends TestCase {
/**
* The fixture for this Ui Command Bindable Def test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UiCommandBindableDef fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(UiCommandBindableDefTest.class);
}
/**
* Constructs a new Ui Command Bindable Def test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiCommandBindableDefTest(String name) {
super(name);
}
/**
* Sets the fixture for this Ui Command Bindable Def test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(UiCommandBindableDef fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Ui Command Bindable Def test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UiCommandBindableDef getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(UiModelFactory.eINSTANCE.createUiCommandBindableDef());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //UiCommandBindableDefTest