/** * 2014 Urs Zeidler */ package de.urszeidler.eclipse.shr5.tests; import junit.framework.TestCase; import de.urszeidler.eclipse.shr5.PersonaZustand; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Persona Zustand</b></em>'. * <!-- end-user-doc --> * <p> * The following features are tested: * <ul> * <li>{@link de.urszeidler.eclipse.shr5.PersonaZustand#getZustandKoerperlichMax() <em>Zustand Koerperlich Max</em>}</li> * <li>{@link de.urszeidler.eclipse.shr5.PersonaZustand#getZustandGeistigMax() <em>Zustand Geistig Max</em>}</li> * <li>{@link de.urszeidler.eclipse.shr5.PersonaZustand#getZustandGrenze() <em>Zustand Grenze</em>}</li> * </ul> * </p> * @generated */ public abstract class PersonaZustandTest extends TestCase { /** * The fixture for this Persona Zustand test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PersonaZustand fixture = null; /** * Constructs a new Persona Zustand test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PersonaZustandTest(String name) { super(name); } /** * Sets the fixture for this Persona Zustand test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(PersonaZustand fixture) { this.fixture = fixture; } /** * Returns the fixture for this Persona Zustand test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PersonaZustand getFixture() { return fixture; } /** * Tests the '{@link de.urszeidler.eclipse.shr5.PersonaZustand#getZustandKoerperlichMax() <em>Zustand Koerperlich Max</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.PersonaZustand#getZustandKoerperlichMax() * @generated not */ public void testGetZustandKoerperlichMax() { fail(); } /** * Tests the '{@link de.urszeidler.eclipse.shr5.PersonaZustand#getZustandGeistigMax() <em>Zustand Geistig Max</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.PersonaZustand#getZustandGeistigMax() * @generated not */ public void testGetZustandGeistigMax() { fail(); } /** * Tests the '{@link de.urszeidler.eclipse.shr5.PersonaZustand#getZustandGrenze() <em>Zustand Grenze</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.PersonaZustand#getZustandGrenze() * @generated not */ public void testGetZustandGrenze() { fail(); } } //PersonaZustandTest