/** * 2014 Urs Zeidler */ package de.urszeidler.eclipse.shr5.tests; import junit.framework.TestCase; import de.urszeidler.eclipse.shr5.MagischeStufe; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Magische Stufe</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class MagischeStufeTest extends TestCase { /** * The fixture for this Magische Stufe test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected MagischeStufe fixture = null; /** * Constructs a new Magische Stufe test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public MagischeStufeTest(String name) { super(name); } /** * Sets the fixture for this Magische Stufe test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(MagischeStufe fixture) { this.fixture = fixture; } /** * Returns the fixture for this Magische Stufe test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected MagischeStufe getFixture() { return fixture; } } //MagischeStufeTest