blob: 4c968331ef312e88b058d5015e213fa609fdeec7 [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.core.extension.model.datatypes.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.core.extension.model.datatypes.ExtDatatypesFactory;
import org.eclipse.osbp.ecview.core.extension.model.datatypes.YTextAreaDatatype;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YText Area Datatype</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class YTextAreaDatatypeTest extends TestCase {
/**
* The fixture for this YText Area Datatype test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected YTextAreaDatatype fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YTextAreaDatatypeTest.class);
}
/**
* Constructs a new YText Area Datatype test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YTextAreaDatatypeTest(String name) {
super(name);
}
/**
* Sets the fixture for this YText Area Datatype test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(YTextAreaDatatype fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this YText Area Datatype test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected YTextAreaDatatype getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(ExtDatatypesFactory.eINSTANCE.createYTextAreaDatatype());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //YTextAreaDatatypeTest