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