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