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