/** */ package de.urszeidler.eclipse.shr5.runtime.tests; import junit.framework.TestCase; import de.urszeidler.eclipse.shr5.runtime.PhyicalState; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Phyical State</b></em>'. * <!-- end-user-doc --> * <p> * The following features are tested: * <ul> * <li>{@link de.urszeidler.eclipse.shr5.runtime.PhyicalState#getOverDead() <em>Over Dead</em>}</li> * </ul> * </p> * @generated */ public abstract class PhyicalStateTest extends TestCase { /** * The fixture for this Phyical State test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PhyicalState fixture = null; /** * Constructs a new Phyical State test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PhyicalStateTest(String name) { super(name); } /** * Sets the fixture for this Phyical State test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(PhyicalState fixture) { this.fixture = fixture; } /** * Returns the fixture for this Phyical State test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PhyicalState getFixture() { return fixture; } /** * Tests the '{@link de.urszeidler.eclipse.shr5.runtime.PhyicalState#getOverDead() <em>Over Dead</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.runtime.PhyicalState#getOverDead() * @generated */ public void testGetOverDead() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //PhyicalStateTest