/** * 2014 Urs Zeidler */ package de.urszeidler.eclipse.shr5.tests; import junit.framework.TestCase; import de.urszeidler.eclipse.shr5.Capacity; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Capacity</b></em>'. * <!-- end-user-doc --> * <p> * The following features are tested: * <ul> * <li>{@link de.urszeidler.eclipse.shr5.Capacity#getCapacityFeature() <em>Capacity Feature</em>}</li> * <li>{@link de.urszeidler.eclipse.shr5.Capacity#getCapacity() <em>Capacity</em>}</li> * <li>{@link de.urszeidler.eclipse.shr5.Capacity#getCapacityRemains() <em>Capacity Remains</em>}</li> * </ul> * </p> * <p> * The following operations are tested: * <ul> * <li>{@link de.urszeidler.eclipse.shr5.Capacity#canAdd(org.eclipse.emf.ecore.EObject) <em>Can Add</em>}</li> * </ul> * </p> * @generated */ public abstract class CapacityTest extends TestCase { /** * The fixture for this Capacity test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Capacity fixture = null; /** * Constructs a new Capacity test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public CapacityTest(String name) { super(name); } /** * Sets the fixture for this Capacity test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(Capacity fixture) { this.fixture = fixture; } /** * Returns the fixture for this Capacity test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected Capacity getFixture() { return fixture; } /** * Tests the '{@link de.urszeidler.eclipse.shr5.Capacity#getCapacityFeature() <em>Capacity Feature</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.Capacity#getCapacityFeature() * @generated */ public void testGetCapacityFeature() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link de.urszeidler.eclipse.shr5.Capacity#getCapacity() <em>Capacity</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.Capacity#getCapacity() * @generated */ public void testGetCapacity() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link de.urszeidler.eclipse.shr5.Capacity#getCapacityRemains() <em>Capacity Remains</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.Capacity#getCapacityRemains() * @generated */ public void testGetCapacityRemains() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link de.urszeidler.eclipse.shr5.Capacity#canAdd(org.eclipse.emf.ecore.EObject) <em>Can Add</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see de.urszeidler.eclipse.shr5.Capacity#canAdd(org.eclipse.emf.ecore.EObject) * @generated */ public void testCanAdd__EObject() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //CapacityTest