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