/** * <copyright> * </copyright> * * $Id$ */ package org.roxgt.tests; import junit.framework.TestCase; import org.roxgt.GraphElement; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Graph Element</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class GraphElementTest extends TestCase { /** * The fixture for this Graph Element test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected GraphElement fixture = null; /** * Constructs a new Graph Element test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public GraphElementTest(String name) { super(name); } /** * Sets the fixture for this Graph Element test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(GraphElement fixture) { this.fixture = fixture; } /** * Returns the fixture for this Graph Element test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected GraphElement getFixture() { return fixture; } } //GraphElementTest