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